[Solved]-UWSGI installation exception on Amazon Linux EC2 instance

20👍

I was helped by this link: uWSGI: Installing from a distribution package

I did:

yum groupinstall "Development Tools"
yum install python-devel

and then:

pip install uwsgi

and after that it works.

3👍

This installation helped me:

sudo yum groupinstall "Development Tools"
sudo yum install python3-devel

Leave a comment