uWSGI Fails with No module named encoding Error

后端 未结 9 1893
花落未央
花落未央 2021-01-17 07:58

I am trying to setup uWSGI with Pyramid, but I am getting this error, when attempting uwsgi --ini-paste development.ini

Python version: 3.2.3

9条回答
  •  孤独总比滥情好
    2021-01-17 08:16

    I also met this problem today, and I tried to set plugins=python34, but it did not work on Ubuntu 14.04 and Python 3.4.3

    This is what I did to fix it:

    1. sudo pip uninstall uwsgi

    2. something goes wrong when i run sudo pip install uwsgi, and run this first:

      sudo apt-get install python-dev

    3. (sudo)pip install uwsgi

提交回复
热议问题