如何用Windows服务器的powershell安装python
时间: 2024-05-12 13:20:44 浏览: 170
安装说明书1
1. 打开Windows服务器的powershell。
2. 下载Python安装包:在powershell中输入以下命令,下载Python 3.9.5版本的安装包。
```
Invoke-WebRequest -Uri https://www.python.org/ftp/python/3.9.5/python-3.9.5-amd64.exe -OutFile python-3.9.5-amd64.exe
```
3. 安装Python:在powershell中输入以下命令,安装Python。
```
.\python-3.9.5-amd64.exe /quiet InstallAllUsers=1 PrependPath=1
```
4. 验证Python是否安装成功:在powershell中输入以下命令,查看Python版本。
```
python --version
```
如果成功安装Python,将看到类似以下输出。
```
Python 3.9.5
```
5. 添加Python到环境变量:在powershell中输入以下命令,将Python添加到系统的环境变量中。
```
$env:Path += ";C:\Python39"
```
注意:这里的`C:\Python39`是Python安装的路径,如果你安装的Python版本不同,需要相应更改路径。
6. 完成安装:现在,Python已经成功安装到Windows服务器上,并可以使用powershell或者命令行来运行Python脚本了。
阅读全文