2014-03-12 74 views
1

我想通過點安裝mitmproxy在Ubuntu 13.04,但每次我面對這個錯誤:「命令python setup.py egg_info失敗,錯誤代碼1在temp/pip-build-lubuntu /加密存儲完整登錄/ home /lubuntu/.pip/pip.log「 我已經通過apt-get安裝了python-pip,python-dev,libxml2-dev,libxslt1和libssl-dev。我的pip版本是1.3.1,python是2.7。我檢查了這個錯誤的所有相關答案,但沒有人有幫助。我非常感謝你的指導和提前幫助。爲什麼我會得到egg_info錯誤?

+0

在這裏似乎沒有足夠的信息來弄清楚發生了什麼事情 - 你能否從你的問題的文件路徑中添加pip安裝日誌的相關部分。 – cortesi

回答

4

我只是在面臨這個問題,並發現我失去了一對夫婦相依爲加密包:

For Debian and Ubuntu, the following command will ensure that the required dependencies are installed:

$ sudo apt-get install build-essential libssl-dev libffi-dev python-dev

For Fedora and RHEL-derivatives, the following command will ensure that the required dependencies are installed:

$ sudo yum install gcc libffi-devel python-devel openssl-devel

(來源:https://cryptography.io/en/latest/installation/#building-cryptography-on-linux

我上最小CentOS6.5安裝VM,發現我還需要:

的libxml2-devel的和的libxslt-devel的

完成後,PIP安裝mitmproxy工作。希望有所幫助!