我正在尝试将psycopg2安装到我的virtualenv中。我尝试过pip我已经尝试过easy_install没有什么工作......从pip安装是更理想的选择,但必须通过nwcell的github包https://github.com/nwcell/psycopg2-windows继续执行命令我一直在使用:
pip install git+https://github.com/nwcell/psycopg2-windows.git@win64-py34#egg=psycopg2
答案 0 :(得分:7)
正如the docs所说:
pip支持从Git,Mercurial,Subversion和Bazaar安装,并使用url前缀检测VCS的类型:" git +"," hg +",&#34 ; bzr +"," svn +"。
pip需要在您的路径上运行VCS命令:git,hg,svn或bzr。
因此,如果您在git
上没有%PATH%
命令,则无法pip install git+<anything>
。要解决此问题,请install git
,并确保它最终在您的%PATH%
上。