我想使用 Django、uwsgi 和 nginx。
首先我想测试uwsgi。我写了一个 test.py 文件:
def application(env, start_response):
start_response('200 OK', [('Content-Type','text/html')])
return "Hello World"
当我输入以下命令并尝试运行 uwsgi
uwsgi --http :8001 --wsgi-file test.py
它告诉我:
ImportError: No module named '_sysconfigdata_m'
我搜索了很多,但我没有找到答案。
我使用 Ubuntu 13.04、Python 3.3.2 和 uwsgi 1.9.14。
非常感谢。