命令'x86_64-linux-gnu-gcc'以退出状态1失败

时间:2017-01-05 19:13:24

标签: python linux gcc ubuntu-16.04

我尝试安装“学术”软件包,但我一直收到这个错误:

x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c build/temp.linux-x86_64-2.7/_openssl.c -o build/temp.linux-x86_64-2.7/build/temp.linux-x86_64-2.7/_openssl.o
build/temp.linux-x86_64-2.7/_openssl.c:434:30: fatal error: openssl/opensslv.h: No such file or directory
compilation terminated.

error: command 'x86_64-linux-gnu-gcc' failed with exit status 1


Command "/usr/bin/python -u -c "import setuptools,tokenize;__file__='/tmp/pip-build-0OXGEx/cryptography/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-EdgZGB-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-0OXGEx/cryptography/

已经尝试过以下帖子中的解决方案,但它没有用:

pip install lxml error

4 个答案:

答案 0 :(得分:57)

我遇到了同样的问题。 这个帮助了我:

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

如果您使用python3,请尝试将python-dev替换为python3-dev

答案 1 :(得分:3)

安装lib32ncurses5-dev:

sudo apt-get install lib32ncurses5-dev

答案 2 :(得分:2)

在我的情况下,例外是:

例外:

#include <snappy-c.h>
          ^~~~~~~~~~~~
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit
status 1

我通过安装以下库解决了该问题:

sudo apt-get install libsnappy-dev

pip3 install python-snappy

Here是有关异常原因以及如何消除该异常的很好解释。

答案 3 :(得分:1)

在新创建的 python 3.6 虚拟环境中并尝试运行我的模块的 setup.py,以下命令解决了错误,

sudo apt-get install python3.6-dev

对我来说,错误是,

... Python.h: No such file or directory
18 | #include "Python.h"
  |          ^~~~~~~~~~
compilation terminated.
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

剩余的软件包 build-essential libssl-dev libffi-dev 已从以前安装过。