我刚刚下载了python zip最新版本,并且已经安装了pip和(滚轮等。) 我无法运行pip命令。 CMD说“没有名为PIP的模块”
我已经在脚本中运行了DIR命令,并且里面有点子
S:\{ Installed }\Phyton\Scripts>dir
Volume in drive S is Software
Volume Serial Number is 1488-3DE4
Directory of S:\{ Installed }\Phyton\Scripts
06/03/2019 05:41 PM <DIR> .
06/03/2019 05:41 PM <DIR> ..
06/03/2019 05:41 PM 102,775 easy_install-3.7.exe
06/03/2019 05:41 PM 102,775 easy_install.exe
06/03/2019 05:41 PM 102,757 pip.exe
06/03/2019 05:41 PM 102,757 pip3.7.exe
06/03/2019 05:41 PM 102,757 pip3.exe
06/03/2019 05:41 PM 102,753 wheel.exe
6 File(s) 616,574 bytes
2 Dir(s) 40,247,717,888 bytes free
然后,我尝试运行这些命令仍然具有相同的输出:
pip install –upgrade esptool ||
pip install esptool
答案 0 :(得分:1)
您已经安装了pip,但需要在系统路径中将其设置为可用。在系统属性>高级>环境变量中,您将需要如下设置python DLL,库和二进制文件(将mine设置为以下内容):
PYTHON_HOME C:\Program Files\Python37\ System
Path %PYTHON_HOME%\ System or User
Path %PYTHON_HOME%\Scripts\ System or User
还要确保您的Pythonpath设置如下:
PythonPath C:\Program Files\Python37
C:\Program Files\Python37\DLLs
C:\Program Files\Python37\Lib
您可能需要先退出,然后登录才能生效。