重新运行Django项目

时间:2012-06-04 04:47:34

标签: mysql django

当我设置时,我输入python manage.py runserver时没有任何错误。但是,当我在settings.py中安装mysql并更改管理员和数据库时,我似乎无法再次运行服务器。

Setting.py

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
        'NAME': '',                      # Or path to database file if using sqlite3.
        'USER': '',                      # Not used with sqlite3.
        'PASSWORD': '',                  # Not used with sqlite3.
        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
    }
}

当我运行python manage.py运行服务器时:

Traceback (most recent call last):
  File "manage.py", line 8, in <module>
    from django.core.management import execute_from_command_line
ImportError: No module named django.core.management

1 个答案:

答案 0 :(得分:0)

你必须确保按照你注意到的方式激活你的env。正如您所看到的,django包只存在于您的环境中。如果你没有使用它,那么你就无法访问django包的任何部分(django.core.management)这里有很多人教程解释了virtualenv的功能。

http://www.arthurkoziel.com/2008/10/22/working-virtualenv/

http://iamzed.com/2009/05/07/a-primer-on-virtualenv/