我正在尝试安装:https://github.com/dgrtwo/ParsePy。根据你需要跑的方向:
pip install git+https://github.com/dgrtwo/ParsePy.git我正在尝试用win7中的git-bash来做这件事。我试过了:
$ C:\\envs\\r1\\Scripts\\pip.exe install git+https://github.com/dgrtwo/ParsePy.git
Fatal error in launcher: Unable to create process using '"C:\envs\r2\Scripts\python.exe" "C:\envs\r1\Scripts\pip.exe" install git+https://github.com/dgrtwo/ParsePy.git'
(r2)
$ C:\\envs\\r1\\Scripts\\pip.exe "install git+https://github.com/dgrtwo/ParsePy.git"
Fatal error in launcher: Unable to create process using '"C:\envs\r2\Scripts\python.exe" "C:\envs\r1\Scripts\pip.exe" "install git+https://github.com/dgrtwo/ParsePy.git"'如何安装该程序包?
编辑:
(r2)
$ C:\\envs\\r1\\Scripts\\pip.exe install https://github.com/dgrtwo/ParsePy/archive/master.zip
Fatal error in launcher: Unable to create process using '"C:\envs\r2\Scripts\python.exe" "C:\envs\r1\Scripts\pip.exe" install https://github.com/dgrtwo/ParsePy/archive/master.zip'
(r2)
$ pip install https://github.com/dgrtwo/ParsePy/archive/master.zip
sh: pip: command not found发布于 2014-12-17 10:00:05
从Github页面复制Download ZIP的链接并将其提供给pip:
pip install https://github.com/dgrtwo/ParsePy/archive/master.zip应该能行得通。
https://stackoverflow.com/questions/27517131
复制相似问题