在一个系统中共存Python2、python3的时候,pip、pip2、pip3使用的时候会报错:
Fatal error in launcher: Unable to create process using '"e:\python37\python.exe" "E:\Python37\Scripts\pip3.exe" install selenium'
解决方法:
没安装pip的话,可以先安装一下:
python3
切换到对应的scripts目录下,然后输入python3 pip.exe install SomePackage
这里显示的是版问题,可以更新一下版本即可:
python3:
python3 -m pip install --upgrade pip
python2:
python2 -m pip install --upgrade pip
注意:python2, python3共存时,将python安装目录下的python.exe改成对应的python2.exe,python3.exe