環境:win7 64位
正常情況下 powershell是不能識别python指令的
需要執行以下指令才能在powershell環境下調用python指令
[Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27", "User")
注:确認你安裝的是 Python 2 而不是 Python 3
具體操作流程:
第一步;windows鍵+R→輸入cmd(或者直接輸入powershell)→輸入powershell調用powershell程式→輸入:[Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27", "User")→執行該指令→exit退出
第二步:windows鍵+r→輸入cmd(或者直接輸入powershell)→輸入powershell調用powershell程式→輸入python來調用python程式→完成。
注:
鍵入 CTRL-Z (^Z),再敲回車以退出 python。
關閉并重新開機 powershell,确認 python 現在可以運作。如果不行的話你可能需要重新開機電腦。
<a href="http://s3.51cto.com/wyfs02/M00/49/E2/wKiom1Qdlf6wysf2AAJj9-cZZV4033.jpg" target="_blank"></a>
本文轉自 murongqingqqq 51CTO部落格,原文連結:http://blog.51cto.com/murongqingqqq/1556388