Ubuntu + PyPy3 + Sublime 运行Python(2)

对于第一句话提到的解决方法,此处有详细解决方法。对于第二句话,一般只要出现了Command "python setup.py egg_info" failed with error code 1这样的问题描述,需要考虑可能pip的这个源里面没有对应的python模块(我们需要的是对应的python3.5的模块),通常可以直接搜索“XXX for python3.5”,或者在github中找到对应的python3.5的项目,将对应的.py文件添加到python的lib目录中。

根据前面链接中的详细解决方法,由于我已经安装了postgresql-9.5,因此先添加libpq-dev库,再安装psycopg2即可。

sudo apt-get install libpq-dev pypy3 -m pip install psycopg2

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/11806.html