本文介绍了如何使用Windows命令提示符安装Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在Windows上从cmd安装Python?如果是这样,怎么做?
Is it possible to install Python from cmd on Windows? If so, how to do it?
推荐答案
要完全隐藏安装程序UI并以静默方式安装Python,请通过
/ quiet选项。要跳过用户交互但仍显示
进度和错误,请传递/ passive选项。可以通过/ uninstall选项
来立即开始删除Python-不会显示
提示。
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.
所有其他选项都以name =值,通常值为
0禁用功能,1启用功能或路径。
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.
这篇关于如何使用Windows命令提示符安装Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!