Ubuntu16.04下安装Uwsgi失败解决办法

今天安装Uwsgi屡次失败,找了很多办法终于解决了。

报错误:
Command “/usr/bin/python3 -u -c “import setuptools, tokenize;file=’/tmp/pip-install-uadvmvn5/uwsgi/setup.py’;f=getattr(tokenize, ‘open’, open)(file);code=f.read().replace(’\r\n’, ‘\n’);f.close();exec(compile(code, file, ‘exec’))” install --record /tmp/pip-record-vervgyau/install-record.txt --single-version-externally-managed --compile” failed with error code 1 in /tmp/pip-install-uadvmvn5/uwsgi/

解决办法:
1.apt-get install python3-dev
2.卸载你的gcc版本,安装为4.7,我也不知道为什么,改为4.7后一次成功了
apt-get install gcc-4.7

rm /usr/bin/gcc

ln -s /usr/bin/gcc-4.7 /usr/bin/gcc

3.pip install uwsgi

这样就可以成功安装了

你可能感兴趣的:(Python开发,Pyhton,Uwsgi,ubuntu)