在CentOS 7下安装uwsgi

操作系统:centos7.8(64位)
uwsgi的版本:uWSGI==2.0.18

没有安装依赖之前报的错:

ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-sb3dcghi/uwsgi/setup.py'"'"'; __file__='"'"'/tmp/pip-install-sb3dcghi/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-pobo9e4h/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.6m/uwsgi Check the logs for full command output.

二、安装uwsgi
1.安装依赖包

A. 安装libxml*:yum install libxml*

 

B. 安装python-devel:yum install python-devel -y

 

C. 安装编译工具:yum install -y gcc* pcre-devel openssl-devel

 

D. yum install python3-devel

2.安装uwsgi 2.0.18

pip3 install uwsgi 即可

你可能感兴趣的:(Django)