python3 -m pip install --upgrade pip

在一个系统中共存Python2、python3的时候,pip、pip2、pip3使用的时候会报错:

c:\Python35\Scripts>pip3
Fatal error in launcher: Unable to create process using '"'

解决方法:

python3:

python3 -m pip install --upgrade pip

python2:

python2 -m pip install --upgrade pip

猜你喜欢

转载自blog.csdn.net/lshdp/article/details/83788920