uWSGI Fails with No module named encoding Error

后端 未结 9 1899
花落未央
花落未央 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:23

    Check the path of virtualenv. Make sure you are not using something like this: ~/.virtualenvs/xxx.

    The ~ symbol points to the home directory of a user. So with different users, this path will refer to different positions.

    If you are not very assured, please move the virtualenv to places like /home/.virtualenvs.

提交回复
热议问题