我在电脑上安装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

当前回答

我也有同样的问题。你只需要去你的

C: \ Python27 \脚本

并将其添加到环境变量中。路径设置完成后,只需在C:\Python27\Scripts上运行pip.exe文件,然后在cmd中尝试pip。但如果什么都没有发生,请尝试运行所有pip应用程序,如pip2.7和pip2.exe。皮普会像魔法一样管用。

其他回答

在Python 3.6.2及以上最新版本中,可在

C:\Program Files (x86)\ Python36-32\脚本

您可以将该路径添加到我们的环境变量path中,如下所示

确保在设置路径后关闭命令提示符或Git。您还应该在管理员模式下打开命令提示符。这是Windows 10的例子。

在安装SQL 2019 Python时,PIP存在已知问题,需要修复(第7步) https://learn.microsoft.com/en-us/sql/advanced-analytics/known-issues-for-sql-server-machine-learning-services?view=sql-server-ver15

pip配置了需要TLS/SSL的位置,但是Python中的SSL模块不可用。

Workaround
Copy the following files:

libssl-1_1-x64.dll
libcrypto-1_1-x64.dll

from the folder 
C:\Program Files\Microsoft SQL Server\MSSSQL15.MSSQLSERVER\PYTHON_SERVICES\Library\bin
to the folder 
C:\Program Files\Microsoft SQL Server\MSSSQL15.MSSQLSERVER\PYTHON_SERVICES\DLLs

Then open a new DOS command shell prompt.

我认为Python 2.7.9及更高版本已经预安装,它将在你的脚本文件夹中。

因此,您必须将“scripts”文件夹添加到路径中。我的安装在C:\Python27\Scripts中。检查你的路径,看看你的路径是什么,这样你就可以相应地改变下面的路径。然后转到PowerShell,在PowerShell中粘贴以下代码并按Enter键。在此之后,重新启动,您的问题将得到解决。

[Environment]::SetEnvironmentVariable("Path", "$env:Path;C:\Python27\Scripts", "User")

我也有同样的问题。你只需要去你的

C: \ Python27 \脚本

并将其添加到环境变量中。路径设置完成后,只需在C:\Python27\Scripts上运行pip.exe文件,然后在cmd中尝试pip。但如果什么都没有发生,请尝试运行所有pip应用程序,如pip2.7和pip2.exe。皮普会像魔法一样管用。

所以这个错误很容易解决。

首先,你必须检查pip是否用python安装。 为此,您需要遵循以下方法。

打开python安装目录 PIP在c:\python34\lib\site-packages\

我们假设您已经在c驱动器python34命名文件夹中安装了python。 这对你来说绝对是不同的。

在site-packages文件夹下找到pip文件夹。如果是,那么一切都准备好了,你只需要进行下一步。 如果没有,请参考本教程进行安装

现在Pip已经安装在我们的系统中,你只需要配置它。

打开Python安装目录:

此处复制安装目录的路径 例:

C:\python38;
C:\python38\Scripts;

这里我假设python安装在C:\python38目录下。请相应更改。

现在在windows中单击开始按钮并搜索: 环境变量

3.打开编辑系统环境变量选项。

在用户变量下选择路径并单击打开它。 现在点击添加新的,只是添加以上复制的路径一个一个。 保存并关闭所有选项卡。 打开cmd并输入 pip - v PS C:\Users\pro> pip -V PIP 20.2.3 from c:\python38\lib\site-packages\ PIP (python 3.8)

现在它的工作。

有问题请告诉我。