如何使用 Windows 命令提示符安装 Python

How to install Python using Windows Command Prompt

是否可以在 Windows 上从 cmd 安装 Python?如果可以,怎么做?

https://docs.python.org/3.6/using/windows.html#installing-without-ui

Installing Without UI: All of the options available in the installer UI can also be specified from the command line, allowing scripted installers to replicate an installation on many machines without user interaction. These options may also be set without suppressing the UI in order to change some of the defaults.

To completely hide the installer UI and install Python silently, pass the /quiet option. To skip past the user interaction but still display progress and errors, pass the /passive option. The /uninstall option may be passed to immediately begin removing Python - no prompt will be displayed.

All other options are passed as name=value, where the value is usually 0 to disable a feature, 1 to enable a feature, or a path.

假设您有 python-installer.exe 文件,您可以 运行 在管理员 /passive 模式下 window。没有管理员权限你会被提示

是否允许此应用对您的设备进行更改?

Powershell 示例可以是:

$installer = "C:/tmp/python-3.7.6-amd64.exe"
& $installer /passive InstallAllUsers=1 PrependPath=1 Include_test=0

对于Windows

我无法找到仅使用 CMD 下载 python 的方法,但如果您的系统中有 python.exe,那么您可以使用以下方法安装它(您也可以制作 . bat 文件使其自动化。)

  1. 从官方网站下载 python.exe 文件到您的计算机上。

  2. 打开CMD并将您的目录更改为您所在的路径python.exe

  3. 在您的命令提示符中输入此代码,确保使用您的文件版本更改名称在下面的代码中(例如 python-3.8.5.exe)

python-3.6.0.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0

它还会设置路径变量。