操作系统: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 即可

本文详细介绍了在CentOS 7.8环境下,解决安装uWSGI 2.0.18过程中遇到的错误的方法。首先,通过安装一系列依赖包如libxml*, python-devel, gcc, pcre-devel, openssl-devel 和 python3-devel来准备环境。然后,使用pip3成功安装了uWSGI。
882

被折叠的 条评论
为什么被折叠?



