在windows上安装python2.7之后,发现,command(CMD)命令行可以使用,但是在powershell命令行上却无法正常使用。
经过查阅资料发现,问题是环境变量没有正常加入,现在我们在powershell中运行如下代码即可。
$env:path="$env:Path;C:\Program files\Python27"
本文共 221 字,大约阅读时间需要 1 分钟。
在windows上安装python2.7之后,发现,command(CMD)命令行可以使用,但是在powershell命令行上却无法正常使用。
经过查阅资料发现,问题是环境变量没有正常加入,现在我们在powershell中运行如下代码即可。
$env:path="$env:Path;C:\Program files\Python27"
转载于:https://www.cnblogs.com/luckyqicc/p/6172172.html