sys.path.append("../pymyinstall/src")
    import pymyinstall

try:
    import pyquickhelper
except ImportError:
    import sys
    sys.path.append("../pyquickhelper/src")
    import pyquickhelper


if __name__ == "__main__":
    import sys
    sys.path.append("src")
    from pyquickhelper import fLOG
    fLOG(OutputPrint=True)

    from ensae_teaching_cs.automation.win_setup_helper import last_function
    from pymyinstall import win_python_setup
    from pymyinstall.packaged import ensae_fullset

    list_modules = ensae_fullset()

    win_python_setup(module_list=list_modules, verbose=True,
                     download_only=False,
                     no_setup=False,
                     last_function=last_function,
                     selection={"R", "tdm"},
                     documentation=False,
                     fLOG=fLOG)
예제 #2
0
try:
    import pyquickhelper
except ImportError:
    import sys
    sys.path.append("../pyquickhelper/src")
    import pyquickhelper


if __name__ == "__main__":
    import sys
    sys.path.append("src")
    from pyquickhelper.loghelper import fLOG
    fLOG(OutputPrint=True)

    from ensae_teaching_cs.automation.win_setup_helper import last_function
    from pymyinstall import win_python_setup
    from pymyinstall.packaged import ensae_fullset

    list_modules = ensae_fullset()

    win_python_setup(module_list=list_modules, verbose=True,
                     download_only=False,
                     no_setup=False,
                     last_function=last_function,
                     # 3.2.5 to be able to use rpy2
                     selection={"R==3.2.5", "tdm", "jdk"},
                     documentation=False,
                     source="2",
                     fLOG=fLOG)
예제 #3
0
import sys
print(sys.executable)
import platform
print(platform.architecture())
sys.path.append("src")
sys.path.append("../pyquickhelper/src")
print("----")
import pyquickhelper
from pymyinstall import win_python_setup
from pymyinstall.packaged import small_set


if True:
    win_python_setup(module_list=small_set(), verbose=True,
                     download_only=False,
                     no_setup=False,
                     selection={},
                     notebooks=[],
                     tutorial=["french"])
예제 #4
0
import platform
print(platform.architecture())
sys.path.append("src")
print("----", sys.version_info)
from pymyinstall import win_python_setup
from pymyinstall.packaged import all_set, minimal_set


if False:
    from pymyinstall.win_installer.win_setup_r import _script
    r = r"C:\github\pymyinstall\dist\win_python_setup\tools\R"
    out = r_run_script(r, _script)
    print(out)


if True:
    list_modules = all_set()
    win_python_setup(module_list=list_modules, verbose=True,
                     download_only=False,
                     no_setup=True,
                     selection={"R", "VS", "jenkins"},
                     source="2")

else:
    win_python_setup(module_list=minimal_set(), verbose=True,
                     download_only=False,
                     no_setup=True,
                     selection={},
                     notebooks=[],
                     source="2")
예제 #5
0
    sys.path.append("../pymyinstall/src")
    import pymyinstall

try:
    import pyquickhelper
except ImportError:
    import sys
    sys.path.append("../pyquickhelper/src")
    import pyquickhelper

if __name__ == "__main__":
    import sys
    sys.path.append("src")
    from pyquickhelper import fLOG
    fLOG(OutputPrint=True)

    from ensae_teaching_cs.automation.win_setup_helper import last_function
    from pymyinstall import win_python_setup
    from pymyinstall.packaged import ensae_fullset

    list_modules = ensae_fullset()

    win_python_setup(module_list=list_modules,
                     verbose=True,
                     download_only=False,
                     no_setup=False,
                     last_function=last_function,
                     selection={"R", "tdm"},
                     documentation=False,
                     fLOG=fLOG)
예제 #6
0
try:
    import pyquickhelper
except ImportError:
    import sys
    sys.path.append("../pyquickhelper/src")
    import pyquickhelper

if __name__ == "__main__":
    import sys
    sys.path.append("src")
    from pyquickhelper.loghelper import fLOG
    fLOG(OutputPrint=True)

    from ensae_teaching_cs.automation.win_setup_helper import last_function
    from pymyinstall import win_python_setup
    from pymyinstall.packaged import ensae_fullset

    list_modules = ensae_fullset()

    win_python_setup(
        module_list=list_modules,
        verbose=True,
        download_only=False,
        no_setup=False,
        last_function=last_function,
        # 3.2.5 to be able to use rpy2
        selection={"R==3.2.5", "tdm", "jdk"},
        documentation=False,
        source="2",
        fLOG=fLOG)
예제 #7
0
import sys
print(sys.executable)
import platform
print(platform.architecture())
sys.path.append("src")
sys.path.append("../pyquickhelper/src")
print("----")
import pyquickhelper
from pymyinstall import win_python_setup
from pymyinstall.packaged import small_set

if True:
    win_python_setup(module_list=small_set(),
                     verbose=True,
                     download_only=False,
                     no_setup=False,
                     selection={},
                     notebooks=[],
                     tutorial=["french"])