Windows11子系统Ubuntu18.04 conda虚拟环境中安装uwsgi
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 100
uwsgi: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
需要创建软链接
# 找到所有的系统中libpcre
find / -name libpcre.so.*
# 创建libpcre.so.1软链到/lib下 下面路径改为自己安装python的路径
sudo ln -s /home/xxx/miniconda3/envs/虚拟环境名/lib/libpcre.so.1 /lib
# 查看版本信息
uwsgi --version
# 2.0.20