当我尝试安装doo-server时,我得到了以下错误:
error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
有人能帮我解决这个问题吗?
当我尝试安装doo-server时,我得到了以下错误:
error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
有人能帮我解决这个问题吗?
当前回答
在Linux Mint中使用python3
$ sudo apt install build-essential python3-dev
应该足够了
其他回答
就像罗宾·温斯洛在评论中说的:
我在这里找到了解决方案:stackoverflow.com/a/5178444/613540
在我的例子中,我的完整错误信息是:
/usr/bin/ld: cannot find -lz
collect2: error: ld returned 1 exit status
error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
我试图安装洪流:
sudo python3 setup.py install
与给定的stackoverflow链接,我解决这个问题:
sudo apt install zlib1g-dev
注意,以下软件包已经安装:
libxslt1-dev is already the newest version.
python3-dev is already the newest version.
libxml2-dev is already the newest version.
希望对大家有所帮助!
除了一些其他有用的答案,如果docker-compose把你带到这里——使用你的venv集,运行:
easy_install docker-compose
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
很多时候,我在安装M2Crypto和pygraphviz时得到了相同的错误,并安装了批准的答案中提到的所有东西。但下面这行解决了我所有的问题与其他包在批准的答案太。
sudo apt-get install libssl-dev swig
sudo apt-get install -y graphviz-dev
这个swig包作为M2Crypto和graphviz-dev的解决方案拯救了我的生命。我希望这能帮助到一些人。
在我的例子中,是缺少libffi-dev包。
工作:
sudo apt-get install libffi-dev
我在大学最后一年的主要项目中安装Linux Mint时遇到了同样的问题,下面的第三个解决方案对我有用。
当遇到这个错误时,请在错误之前注意,它可能会说你缺少一个包或头文件-你应该找到它们并安装它们,并验证它是否工作(例如ssl→libssl)。
对于Python 2。x使用:
sudo apt-get install python-dev
对于Python 2.7,请使用:
sudo apt-get install libffi-dev
对于Python 3。x使用:
sudo apt-get install python3-dev
或对于特定版本的Python 3,将x替换为中的次要版本
sudo apt-get install python3.x-dev