我在电脑上安装Django时遇到了一个奇怪的错误。

这是我在命令行中输入的序列:

C:\Python34> python get-pip.py
Requirement already up-to-date: pip in c:\python34\lib\site-packages
Cleaning up...

C:\Python34> pip install Django
'pip' is not recognized as an internal or external command,
operable program or batch file.

C:\Python34> lib\site-packages\pip install Django
'lib\site-packages\pip' is not recognized as an internal or external command,
operable program or batch file.

是什么导致了这种情况?

这是当我输入echo %PATH%时得到的结果:

C:\Python34>echo %PATH%
C:\Program Files\ImageMagick-6.8.8-Q16;C:\Program Files (x86)\Intel\iCLS Client\
;C:\Program Files\Intel\iCLS Client\;C:\Windows\system32;C:\Windows;C:\Windows\S
ystem32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\
Windows Live\Shared;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Progr
am Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files\Intel\Intel(R) Mana
gement Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine C
omponents\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components
\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\P
rogram Files (x86)\nodejs\;C:\Program Files (x86)\Heroku\bin;C:\Program Files (x
86)\git\cmd;C:\RailsInstaller\Ruby2.0.0\bin;C:\RailsInstaller\Git\cmd;C:\RailsIn
staller\Ruby1.9.3\bin;C:\Users\Javi\AppData\Roaming\npm

当前回答

替代方法。

如果你不想像前面写得很好的答案所指出的那样添加PATH,

但是你想要执行PIP作为你的命令,那么你可以用py -m作为前缀。

考虑到你要一次又一次地做这件事。

eg.

py -m <command>

就像在

py -m pip install --upgrade pip setuptools

还要确保安装了pip和py

其他回答

我刚刚安装了Python 3.6.2。

我得到了路径

C:\Users\USERNAME\AppData\Local\Programs\Python\ Python36-32 \脚本

在Windows中,打开cmd并使用where python找到PYTHON_HOME的位置。现在将这个位置添加到您的环境变量PATH使用:

set PATH=%PATH%;<PYTHON_HOME>\Scripts

或者参考这个。


在Linux中,打开一个终端,并使用python找到PYTHON_HOME的位置。现在使用以下方法将PYTHON_HOME/Scripts添加到PATH变量中:

PATH=$PATH:<PYTHON_HOME>\Scripts
export PATH

在纠正我的PATH后,我继续收到这个错误。

如果您的代码库要求您拥有较早版本的Python(在我的例子中是2.7),那么它可能是pip存在之前的版本。

它不是很规范,但是安装一个最新的版本对我来说很有用。(我使用的是2.7.13。)

对于Windows,当你安装一个包时,输入:

python -m pip install [packagename]

我刚才也遇到了同样的问题。

在将适当的文件夹(C:\Python33\Scripts)添加到路径后,我仍然无法让pip运行。只需要跑步 Pip.exe安装-package-而不是 PIP install -package-。