是否可以在Windows上从cmd安装Python?如果是这样,怎么办?解决方法:https://docs.python.org/3.6/using/windows.html#installing-without-uiInstalling Without UI: All of the options available in the installer...

是否可以在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.
本文标题为:如何使用Windows命令提示符安装Python


基础教程推荐
- Python读取Linux内存进程错误(/ proc / $pid / mem) 2023-11-14
- 如何使用Python在Windows控制台中打印卢比符号? 2023-11-11
- Windows 下update pip 报错:Cannot remove entries from nonexistent file c:\intelpython3\lib\site-packa 2023-09-04
- Python Type Hints 学习之从入门到实践 2023-08-08
- Python子进程模块比命令慢得多(不建议使用) 2023-11-16
- python-如何使用cygwin从posix切换到Windows 2023-11-15
- Python实现K-近邻算法的示例代码 2022-10-20
- python嵌套try...except如何使用详解 2022-08-30
- Python基础学习之函数和代码复用详解 2022-09-02
- windows创建定时任务执行python脚本 2023-09-03