目前我使用pip安装subprocess32
如下,我想删除对pip的依赖并使用python,如何将pip.main(["install", "subprocess32"])
更改为C:\Python27\python.exe -m pip install subprocess32
try:
import subprocess32
except ImportError:
pip.main(["install", "subprocess32"])#change this call to C:\Python27\python.exe -m pip install subprocess32