2010-08-15 54 views
0

Django是通過Ubuntu上的apt-ger安裝的。ImportError:沒有名爲django.core.handlers.modpython的模塊

sudo apt-get install python-django 

需要用於新功能的開發版本。

刪除通過

sudo apt-get purge python-django 

重新安裝的Django以前安裝本文

http://jeffbaier.com/articles/installing-django-on-an-ubuntu-linux-server/

django-admin.py --version 
1.3 pre-alpha SVN-13591 

還沒有作出httpd.conf文件

聞聽此事的任何更改以下錯誤

MOD_PYTHON ERROR 

PathInfo:  '' 

Phase:   'PythonHandler' 
Handler:  'django.core.handlers.modpython' 

Traceback (most recent call last): 

    File "/usr/lib/python2.6/dist-packages/mod_python/importer.py", line 1537, in HandlerDispatch 
    default=default_handler, arg=req, silent=hlist.silent) 

    File "/usr/lib/python2.6/dist-packages/mod_python/importer.py", line 1202, in _process_target 
    module = import_module(module_name, path=path) 

    File "/usr/lib/python2.6/dist-packages/mod_python/importer.py", line 304, in import_module 
    return __import__(module_name, {}, {}, ['*']) 

ImportError: No module named django.core.handlers.modpython 

幾個測試

Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) 
[GCC 4.4.3] on linux2 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import django 
>>> import django.core.handlers.modpython 
>>> 

回答

1

這個工作在Django目錄

python setup.py install 
相關問題