django.db.utils.OperationalError: 没有这样的表: auth_user
安装后 Django-userena 一个错误
my django version: 1.9.5
我只是在安装 django-userena 一步一步,但是当我携带它时,发生错误,我不知道如何解决它。
应用程序:
</module>
my django version: 1.9.5
我只是在安装 django-userena 一步一步,但是当我携带它时,发生错误,我不知道如何解决它。
Traceback /most recent call last/:
File "manage.py", line 12, in <module>
execute_from_command_line/sys.argv/
File "C:\Python27\lib\site-packages\django\core\management\__init__.py", line 353, in execute_from_command_line
utility.execute//
File "C:\Python27\lib\site-packages\django\core\management\__init__.py", line 345, in execute
self.fetch_command/subcommand/.run_from_argv/self.argv/
File "C:\Python27\lib\site-packages\django\core\management\base.py", line 348, in run_from_argv
self.execute/*args, **cmd_options/
File "C:\Python27\lib\site-packages\django\core\management\base.py", line 399, in execute
output = self.handle/*args, **options/
File "C:\Python27\lib\site-packages\django\core\management\commands\migrate.py", line 204, in handle
emit_post_migrate_signal/self.verbosity, self.interactive, connection.alias/
File "C:\Python27\lib\site-packages\django\core\management\sql.py", line 50, in emit_post_migrate_signal
using=db/
File "C:\Python27\lib\site-packages\django\dispatch\dispatcher.py", line 192, in send
response = receiver/signal=self, sender=sender, **named/
File "C:\Python27\lib\site-packages\guardian\management\__init__.py", line 33, in create_anonymous_user
User.objects.get/**lookup/
File "C:\Python27\lib\site-packages\django\db\models\manager.py", line 122, in manager_method
return getattr/self.get_queryset//, name//*args, **kwargs/
File "C:\Python27\lib\site-packages\django\db\models\query.py", line 381, in get
num = len/clone/
File "C:\Python27\lib\site-packages\django\db\models\query.py", line 240, in __len__
self._fetch_all//
File "C:\Python27\lib\site-packages\django\db\models\query.py", line 1074, in _fetch_all
self._result_cache = list/self.iterator///
File "C:\Python27\lib\site-packages\django\db\models\query.py", line 52, in __iter__
results = compiler.execute_sql//
File "C:\Python27\lib\site-packages\django\db\models\sql\compiler.py", line 848, in execute_sql
cursor.execute/sql, params/
File "C:\Python27\lib\site-packages\django\db\backends\utils.py", line 79, in execute
return super/CursorDebugWrapper, self/.execute/sql, params/
File "C:\Python27\lib\site-packages\django\db\backends\utils.py", line 64, in execute
return self.cursor.execute/sql, params/
File "C:\Python27\lib\site-packages\django\db\utils.py", line 95, in __exit__
six.reraise/dj_exc_type, dj_exc_value, traceback/
File "C:\Python27\lib\site-packages\django\db\backends\utils.py", line 64, in execute
return self.cursor.execute/sql, params/
File "C:\Python27\lib\site-packages\django\db\backends\sqlite3\base.py", line 323, in execute
return Database.Cursor.execute/self, query, params/
django.db.utils.OperationalError: no such table: auth_user
应用程序:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sites',
'userena',
'guardian',
'easy_thumbnails',
'accounts',
]
</module>
没有找到相关结果
已邀请:
4 个回复
三叔
赞同来自:
如果您的版本 Django 平等的 1.9 或更低,使用
然后
更多信息
https://github.com/django/djan ... ms.py
也许它会有所帮助
莫问
赞同来自:
is calling
before it is defined.
Why is it called before it is defined?
...well, it is called by
to find out if there are changes in the
to define them /the changes that are found/
...so this is a "chicken and egg" problem.
I have the same error with a similar problem but the offending code was my own code /not a library like
/
My code was like this:
进攻部分是
, 在创建表之前使用
只有在存在表时才能运行代码解决了问题。 它不会发生
. 你可以学习它
, 像这样:
因此,
运行代码
, 和
- 代码
.
注意逻辑价值
, 您可以使用任何其他方法来避免执行代码。
, 这取决于结果
詹大官人
赞同来自:
董宝中
赞同来自: