windows 7(32 位)上的 pip 安装错误
pip installation error on windows 7 (32-bit)
我在 windows 7(32 位)上安装了 pip,但出现以下错误。
C:\Python\Python36-32\Scripts>pip --version
Fatal error in launcher: Unable to create process using '"'
C:\Python\Python36-32\Scripts>pip install httpie
Fatal error in launcher: Unable to create process using '"'
我已经在 C:\Python 中保存了 get-pip.py 文件。
我已经设置了系统变量 also.i 已经按照页面进行安装 https://dev.to/el_joft/installing-pip-on-windows
有人可以帮忙吗
下面的命令解决了我的问题
python -m pip install pip==9.0.1
发现于
我在 windows 7(32 位)上安装了 pip,但出现以下错误。
C:\Python\Python36-32\Scripts>pip --version
Fatal error in launcher: Unable to create process using '"'
C:\Python\Python36-32\Scripts>pip install httpie
Fatal error in launcher: Unable to create process using '"'
我已经在 C:\Python 中保存了 get-pip.py 文件。 我已经设置了系统变量 also.i 已经按照页面进行安装 https://dev.to/el_joft/installing-pip-on-windows 有人可以帮忙吗
下面的命令解决了我的问题
python -m pip install pip==9.0.1
发现于