当我设置时,我输入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
答案 0 :(得分:0)
你必须确保按照你注意到的方式激活你的env
。正如您所看到的,django
包只存在于您的环境中。如果你没有使用它,那么你就无法访问django包的任何部分(django.core.management
)这里有很多人教程解释了virtualenv的功能。