Install python for windows without user interaction

How to install Python on a Windows machine from a script package or something like that.

The requirement is that I need to install it without interacting with the person.

and for site packages. Is it possible to install the packages found here are also automated:

http://www.lfd.uci.edu/~gohlke/pythonlibs/#pymatlab

Basic .exe installation with a few clicks.

+4
source share
2 answers

Unzip the contents of Winpython , copy this folder to any Windows machine you like. Made: -).

: Winpython GUI-Installer python. , , Winpython Windows-.

Cheers barrios

EDIT: Anaconda python . . , ONCE Anaconda , .

+2

Python - .msi, . python , msi:

msiexec /i python-2.7.6.msi /passive

( /quiet /passive, .... /passive , , ).

... distutils ( ... distutils), easy_install. easy_install tar.gz, , pypi ( , ). , exes , . , ... (wxpython, pyreadline - , ).

.

c:\python27\scripts\easy_install.exe my_module.py27-amd64.exe
+1
source

Source: https://habr.com/ru/post/1530608/


All Articles