uWSGI Fails with No module named encoding Error

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

    in my case it was basically because I used python 2.7 as main interpreter, and uwsgi choose pyhon3 plugin. You might need to force it using:

    plugins=python32

    where python32is appropriate name for your pythhon3 plugin.

    Have you checked this: uwsgi python3 plugin doesn't work?

提交回复
热议问题