Error building uwsgi with pip in virtual environment

前端 未结 2 1973
失恋的感觉
失恋的感觉 2021-01-07 03:17

I am getting errors when I try to install uwsgi in my virtual environment in my Centos VPS. Ultimately, I cannot install uwsgi.

I am using :

 pip ins         


        
相关标签:
2条回答
  • 2021-01-07 04:14

    On CentOS 6.4 I had to install dev tools first:

    yum groupinstall "Development Tools"
    
    0 讨论(0)
  • 2021-01-07 04:19

    Try to install the following packages before installing uwsgi:

    sudo apt-get -y install build-essential python-dev zlib1g-dev libssl-dev
    
    0 讨论(0)
提交回复
热议问题