首页 > 代码库 > 解决Command "python setup.py egg_info" failed with error code 1坎坷路

解决Command "python setup.py egg_info" failed with error code 1坎坷路

机器:os x

本地想跑一下一个开源django博客应用,下了源码到里头pip install -r requirements.txt

结果屡次出错,Command "python setup.py egg_info" failed with error code 1

试了多次一直于最后一行这个错误。

我开始以为权限问题,setuptools问题

后来有转机了,我把 requirements.txt里头一个个安装,最后原是psycopg2这个安装有问题

pip我错怪你了,不过把官方源换豆瓣的后,下载速度杠杠的,从此我就抛弃pypi源了呦。

回到问题,psycopg2是postgresql的python接口,出错原因很简单,那就是我要先装好postgresql这个数据库。

sudo brew install postgresql
Password:
==> Installing dependencies for postgresql: makedepend, openssl, readline
==> Installing postgresql dependency: makedepend
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/makedepend-1.0.5.yosemite.bottle.tar.gz
######################################################################## 100.0%
==> Pouring makedepend-1.0.5.yosemite.bottle.tar.gz

解决Command "python setup.py egg_info" failed with error code 1坎坷路