I installed uwsgi using pip install uwsgi .
When I start uwsgi, I get a couple of errors. The command I run is uwsgi --master --emperor /etc/uwsgi/apps-enabled --die-on-term --uid www-data --gid www-data .
It seems like I'm missing the http and python plugins:
[uWSGI] getting INI configuration from component_tracking_test.ini
open ("./ http_plugin.so"): No such file or directory [core / utils.c line 3347]
!!! UNABLE to load uWSGI plugin: ./http_plugin.so: cannot open shared object file: No such file or directory !!!
open ("./ python_plugin.so"): No such file or directory [core / utils.c line 3347]
!!! UNABLE to load uWSGI plugin: ./python_plugin.so: cannot open shared object file: No such file or directory !!!
[emperor] removed uwsgi instance component_tracking_test.ini
How to install the necessary plugins, given that I installed uwsgi via pip?
source share