python 2.7窗口沉默安装程序(.msi) – 命令行选项来设置path?

当使用静默安装程序(.msi)在Windows上安装python 2.7时,是否有命令行选项将Python添加到path环境variables中,如GUI选项?

Python 3.5安装程序默认包含PrependPath = 0选项,但Python 2.7可以使用它吗?

https://docs.python.org/3/using/windows.html

看起来像这个问题在这里讨论,但没有解决Python 2.7?

https://bugs.python.org/issue3561

编辑


这批命令石!

setx \ M PATH“%PATH%; C:\ Python \ Python27; C:\ Python \ Python27 \ Scripts”

Python MSI安装程序可以从2.4开始更新系统路径。 只需将ADDLOCAL = ALL添加到命令行即可。 传播之前,您必须重新启动系统。

msiexec /i "python-2.7.11.amd64.msi" /passive /norestart ADDLOCAL=ALL 

https://www.python.org/download/releases/2.4/msi/