Python的环境路径不起作用?

时间:2016-01-28 15:39:24

标签: python python-3.x path installation environment-variables

我已将Python 3.4安装到新PC上。 Python工作,但我试图让pip工作。我已经为Python制作了一条路径,如下所示。

C:\Python34\python.exe

当我运行以下代码时

C:\Windows\System32>pip install python-docx


'python' is not recognized as an internal or external command,
operable program or batch file.

1 个答案:

答案 0 :(得分:6)

您好像没有正确配置PATH变量。为此:

  • 按住Win键并按“暂停”。
  • 单击“高级系统设置”。
  • 单击“环境变量”。
  • ;C:\Python34附加到PATH变量。
  • 重新启动命令提示符。

(您也可以在set PYTHONPATH=%PYTHONPATH%;C:\Python34

中运行cmd

有关详细信息,请参阅The Official Python Installation Guide for Windows