为什么在使用pip install命令时出现此错误

时间:2020-01-15 08:41:22

标签: python pip

当我尝试使用pip(python)安装软件包时,遇到了一个问题。我认为这与路径有关,因为我对此做了一些处理。 这是错误

pip : The term 'pip' is not recognized as the name of a cmdlet, function,  
      script file, or operable program. Check the spelling of the name,
      or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ pip
+ ~~~
+ CategoryInfo          : ObjectNotFound: (pip:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException

3 个答案:

答案 0 :(得分:1)

可执行文件“ pip”不在您的系统路径中。您可以使用echo %PATH%检查路径变量,并验证要搜索的可执行文件。如果您提供有关python安装的更多详细信息(安装python的版本,安装方式以及安装位置),那么有人会帮助您安装“ pip”或将其添加到路径。

答案 1 :(得分:0)

这意味着您没有安装pip,这很奇怪,因为它已预先安装了python。无论如何,您都可以通过从 'https://bootstrap.pypa.io/get-pip.py' 然后导航到您刚刚下载的pip文件夹并运行命令 'python get-pip.py' 您现在可以使用以下命令验证是否已正确安装 'pip -V'

答案 2 :(得分:0)

通过在具有管理员权限的CMD中运行此命令来将pip添加到您的路径(用您自己的python安装路径替换路径“ C:\ Python36 \ Scripts”)-

setx path "C:\Python36\Scripts;"

重新启动CMD,然后重试点。