我在使用pip安装模块时遇到问题,例如
sudo -H pip3 install kivy
返回此错误
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-b3rwh_e6/kivy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-bev6v2mx-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-b3rwh_e6/kivy/
我对python和编程都很陌生,所以我可能做错了,可能值得一提的是我安装了python2.7和python3.5,并安装了包{ {1}}和python3.5-dev
没有修复它。
编辑:构建日志: https://drive.google.com/file/d/0B5e3GD1lfCbUZ19LU3RENzY4MU0/view?usp=sharing
答案 0 :(得分:1)
包含C扩展的包需要编译,因此可能需要gcc和python-dev(在某些情况下还需要gcc-c ++)。
运行:
sudo apt-get install gcc python-dev
在pip安装包之前。
答案 1 :(得分:0)
您是否尝试过安装
sudo apt-get install python-dev
for python2.7?
来自官方网站
https://kivy.org/docs/installation/installation-linux.html
for python 2
sudo apt-get install python-kivy
for python 3
sudo apt-get install python3-kivy