UNABLE for loading the uWSGI plugin: ./ python3_plugin.so: cannot open a shared objects file: there is no such file or directory

On my Fedora workstation, I get this error:

!!! UNABLE to load uWSGI plugin: ./python3_plugin.so: cannot open shared object file: No such file or directory !!! 

But on the server (CentOS Linux), it works fine.

To get around this, I have to say this in the uwsgi.ini file

 plugins-dir = /usr/lib64/uwsgi/ plugins = python3 

But on the server, I can just do this:

 plugins = python3 

On my workstation, I uninstalled / reinstalled uwsgi using dnf. I have a python plugin installed in the / usr / lib 64 / uwsgi folder. This came from dnf install uwsgi-plugin-python3

I am embarrassed.

+6
source share

Source: https://habr.com/ru/post/1013883/


All Articles