Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/django/19.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Python 我能';t安装pip包安装程序_Python_Django_Pip - Fatal编程技术网

Python 我能';t安装pip包安装程序

Python 我能';t安装pip包安装程序,python,django,pip,Python,Django,Pip,pip python安装程序告诉我已经安装了pip,并显示以下错误: Collecting pip Using cached https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl Installing collected packages: pip Found exi

pip python安装程序告诉我已经安装了pip,并显示以下错误:

Collecting pip
  Using cached https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl
Installing collected packages: pip
  Found existing installation: pip 19.3.1
    Uninstalling pip-19.3.1:
      Successfully uninstalled pip-19.3.1
[33m  WARNING: The scripts pip.exe, pip3.8.exe and pip3.exe are installed in 'C:\Users\ABUBAKAR SADIQ\AppData\Local\Programs\Python\Python38-32\Scripts' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.[0m
Successfully installed pip-19.3.1

您已经安装了pip软件包,但Windows不知道该软件包在哪里。您需要将目录添加到Windows的PATH变量中

在命令行中执行:

setx path "%path%;C:\Users\ABUBAKAR SADIQ\AppData\Local\Programs\Python\Python38-32\Scripts"

这回答了你的问题吗?这似乎奏效了。那么,你到底有什么问题?