uWSGI and Python > 3.4
问题 I have a django project currently running with the following configuration: Debian 8 Python 3.4 uWSGI in emperor mode I installed Python 3.6.1 from source and created a new virtual environment with python 3.6 (I use virtualenvwrapper), but I seem to have some trouble getting the project to start up with uwsgi. Config file is as follows: [uwsgi] plugins = python3 project = %n module = myapp.wsgi:application home = path_to_new_env socket = /var/run/uwsgi-%n.sock chdir = path_to_new_env/myapp