我尝试使用sudo pip install lxml
在CentOS上安装lxml包,它在最后抛出了以下错误:
错误:
error: command 'gcc' failed with exit status 1
---------------------------------------
Command /usr/bin/python -c "import setuptools;__file__='/tmp/pip-build-root/lxml/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-PjviBq-record/install-record.txt --single-version-externally-managed failed with error code 1 in /tmp/pip-build-root/lxml
Storing complete log in /root/.pip/pip.log
[hg@user-centos-1 ~]$ error: command 'gcc' failed with exit status 1
bash: error:: command not found
9条答案
按热度按时间41ik7eoe1#
“错误:命令'gcc'失败,退出状态为1“。安装失败,因为缺少python-devel和某些依赖项。
纠正GCC问题的最佳方法:
您需要重新安装gcc、gcc-c++和依赖项。
对于Python 2.7
对于Python 3.4
希望这会有所帮助。
lskq00tm2#
是否安装了gcc?
7jmck4yq3#
我敢打赌你必须安装
libxml2-devel
或libxml++-devel
甚至python-devel
。但这只是一个大胆的猜测,没有看到日志文件中的实际错误。但似乎gcc
缺少一个头文件或一个库文件。goucqfw64#
如果使用python36,这是设置的最佳路径。在aws ec2示例上为我更正了此错误
vkc1a9a25#
它适用于:
Fix “gcc: error trying to exec ‘cc1plus’: execvp: No such file or directory” in Fedora
mfuanj7w6#
我是怎么解决的
我希望这将有助于有人解决“gcc”的问题。
lb3vh1jj7#
gajydyqb8#
我在安装
Fasttext
时在CentOS
上遇到了这个问题。这个问题通过以下方法得到了修复。参考:https://github.com/facebookresearch/fastText/issues/1105#issuecomment-667041482
如果以上方法无效,请尝试:
参考:https://support.huaweicloud.com/intl/en-us/trouble-ecs/ecs_trouble_0356.html
mqxuamgl9#
centos GCP,这对我很有效|隐式安装python3库。