plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory

While installing uwsgi for Django with Nginx pip install uwsgi . I got this error, “plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory”. Error: *** uWSGI compiling embedded plugins *** [gcc -pthread] plugins/python/python_plugin.o In file included from plugins/python/python_plugin.c:1:0: plugins/python/uwsgi_python.h:2:20: fatal error: Python.h: No such file or directory compilation terminated. Solution: To fix this issue, … Read more

How to list all installed python modules

How to list all installed python modules To know what are the python modules installed in system.Use the given below command. Login into system. Type the command python to get the python prompt # python Now you will get the python prompt like this >>>, type the command help(“modules”) and press enter key >>> help(“modules”) … Read more