UWSGI error with PCRE Ubuntu 加载共享库时出现 20.04 错误:libpcre.so.1:
UWSGI error with PCRE Ubuntu 20.04 error while loading shared libraries: libpcre.so.1:
我运行通过以下步骤尝试启动应用程序进行生产:
-Setup a virtualenv for the python dependencies: virtualenv -p /usr/bin/python3.8 ~/app_env
-Install pip dependencies: . ~/app_env/bin/activate && pip install -r ~/app/requirements.txt
-Un-comment the lines for privilege dropping in uwsgi.ini and change the uid and gid to your account name
-Login to root with sudo -s and re-source the env with source /home/usr/app_env/bin/activate
-Set the courthouse to production mode by setting the environment variable with export PRODUCTION=1
-Start the app: cd /home/usr/app && ./start_script.sh
我收到以下错误:
(app_env) root@usr-Spin-SP314-53N:/home/usr/Desktop/app# ./start.sh
uwsgi: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
我尝试了一些方法,例如安装更新的 libpcre 版本 here, tried also the steps mentioned here,但没有用。此外,我正在设置的环境不使用 anaconda,而是使用常规 python。我什至在我的虚拟环境中尝试 pip install uwsgi
但它说要求已经满足。当涉及到像这样有点复杂的包管理时,我不是专家,非常感谢帮助解决这个问题。谢谢。我在 Ubuntu 20.04,使用 python 3.8.
为我解决的问题显然只是在我的虚拟环境中重新安装 UWSGI,就像在 this 线程中一样,同时强制它忽略缓存,以便它知道使用我安装的 pcre 库。
按顺序,这样做
uwsgi --version
给我这个
uwsgi: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
所以我确保安装了最新的 libpcre
sudo apt-get install libpcre3-dev
然后将它们联系在一起的是这个
pip install uwsgi -I --no-cache-dir
我试图解决这个错误,但无论我做什么都没有用,然后重新安装了 uwsgi,但是下面两行解决了我的问题
sudo find / -name libpcre.so.*
#将 /home/anaconda3/lib/libpcre.so.1 的路径更改为上一个之后出现的路径。
sudo ln -s /home/anaconda3/lib/libpcre.so.1 /lib
which python
我运行通过以下步骤尝试启动应用程序进行生产:
-Setup a virtualenv for the python dependencies: virtualenv -p /usr/bin/python3.8 ~/app_env
-Install pip dependencies: . ~/app_env/bin/activate && pip install -r ~/app/requirements.txt
-Un-comment the lines for privilege dropping in uwsgi.ini and change the uid and gid to your account name
-Login to root with sudo -s and re-source the env with source /home/usr/app_env/bin/activate
-Set the courthouse to production mode by setting the environment variable with export PRODUCTION=1
-Start the app: cd /home/usr/app && ./start_script.sh
我收到以下错误:
(app_env) root@usr-Spin-SP314-53N:/home/usr/Desktop/app# ./start.sh
uwsgi: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
我尝试了一些方法,例如安装更新的 libpcre 版本 here, tried also the steps mentioned here,但没有用。此外,我正在设置的环境不使用 anaconda,而是使用常规 python。我什至在我的虚拟环境中尝试 pip install uwsgi
但它说要求已经满足。当涉及到像这样有点复杂的包管理时,我不是专家,非常感谢帮助解决这个问题。谢谢。我在 Ubuntu 20.04,使用 python 3.8.
为我解决的问题显然只是在我的虚拟环境中重新安装 UWSGI,就像在 this 线程中一样,同时强制它忽略缓存,以便它知道使用我安装的 pcre 库。
按顺序,这样做
uwsgi --version
给我这个
uwsgi: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
所以我确保安装了最新的 libpcre
sudo apt-get install libpcre3-dev
然后将它们联系在一起的是这个
pip install uwsgi -I --no-cache-dir
我试图解决这个错误,但无论我做什么都没有用,然后重新安装了 uwsgi,但是下面两行解决了我的问题
sudo find / -name libpcre.so.*
#将 /home/anaconda3/lib/libpcre.so.1 的路径更改为上一个之后出现的路径。
sudo ln -s /home/anaconda3/lib/libpcre.so.1 /lib
which python