ImportError:没有名为'_sysconfigdata_m'的模块

时间:2013-08-24 16:02:08

标签: django nginx uwsgi python-3.3

我想使用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。

非常感谢。

0 个答案:

没有答案