无法在Windows中启动python

时间:2017-08-08 09:08:47

标签: python chocolatey

早些时候我使用chocolatey安装了Python 3.5,但是当我发现只需要Python版本2时我只需要使用的库 - 我卸载了Python 3.5,然后从控制面板安装Python 2.7.3。

我确保为Python正确设置PATH变量 -

PATH=....;C:\Python27

但是当我从提示中调用python时,我得到以下错误:

C:\>python 
Cannot find file at '..\\lib\python3\tools\python.exe' 
(C:\ProgramData\chocolatey\lib\python3\tools\python.exe). This usually 
indicates a missing or moved file. 

如何设置解决巧克力包管理器问题?

4 个答案:

答案 0 :(得分:2)

在运行choclatey uninstall python并在控制面板中的其他python版本中卸载后,我遇到了同样的问题。我能够通过从chocolatey bin目录(C:\ ProgramData \ Chocolatey \ bin)中删除python.exe和pythonw.exe来解决它。

del C:\ProgramData\Chocolatey\bin\pytho*.exe

希望这有帮助!

答案 1 :(得分:0)

检查列出的here列出的环境变量是否具有正确的值。

例如

C:\>set PYTHONHOME=C:\Python27

答案 2 :(得分:0)

  

无法在' .. \ lib \ python3 \ tools \ python.exe找到文件'

您确定已将Python 2 .7.3安装到此文件夹中吗?

  

... \ python 3 \ ...

您可能只需要将该路径更改为

  

' .. \ lib中\蟒的 2 \工具\ python.exe'

答案 3 :(得分:0)

您必须将python 2添加到路径中。 如果您确定已经这样做,请重新启动计算机以确保它使用正确的路径变量。