我想通過點安裝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錯誤?
1
A
回答
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工作。希望有所幫助!
相關問題
- 1. 爲什麼我會得到「java.lang.IllegalArgumentException」錯誤?
- 2. 爲什麼我會得到UncaughtSyntax錯誤
- 3. 爲什麼我會得到java.lang.OutOfMemory錯誤?
- 4. 我不知道爲什麼我會得到這個'Addressof'錯誤?
- 5. 爲什麼我會爲mysql查詢得到'未知列'錯誤?
- 6. 爲什麼我得到這個錯誤?
- 7. 爲什麼我得到std :: out_of_range錯誤?
- 8. 爲什麼我得到這個錯誤
- 9. 爲什麼我得到std :: bad_alloc錯誤
- 10. 爲什麼我得到ORA-00936錯誤
- 11. 爲什麼我得到語法錯誤?
- 12. 爲什麼我得到C2059錯誤?
- 13. 爲什麼我得到這個錯誤?
- 14. 爲什麼我得到這個錯誤?
- 15. 爲什麼我得到錯誤:System.Runtime.InteropServices.COMException?
- 16. 爲什麼我得到ORA-01438錯誤
- 17. 爲什麼我得到這個錯誤?
- 18. 爲什麼我得到kAudioUnitErr_FormatNotSupported(10868)錯誤?
- 19. 爲什麼我得到錯誤「java.lang.ArrayIndexOutOfBoundsException」
- 20. 爲什麼我得到這個錯誤?
- 21. 爲什麼我得到語法錯誤?
- 22. 爲什麼我得到錯誤500?
- 23. 爲什麼我得到這個錯誤?
- 24. 爲什麼我得到NullPointerException錯誤?
- 25. 爲什麼我得到這個錯誤?
- 26. 爲什麼我得到語法錯誤?
- 27. 爲什麼我得到java.lang.AbstractMethodError錯誤?
- 28. 爲什麼我得到這個錯誤?
- 29. 爲什麼我得到屬性錯誤?
- 30. 爲什麼我得到這個錯誤?
在這裏似乎沒有足夠的信息來弄清楚發生了什麼事情 - 你能否從你的問題的文件路徑中添加pip安裝日誌的相關部分。 – cortesi