django之sqlite3常見錯誤
如果錯誤的最後一行是
django.core.exceptions.ImproperlyConfigured: Error loading either pysqlite2 or sqlite3 modules (tried in that order): No module named _sqlite3
則可以試一下命令
如果打名令python manage.py syncdb 之後還有錯誤那麼可以試一下下面的操作wget http://pysqlite.googlecode.com/files/pysqlite-2.6.3.tar.gz
tar -xzf pysqlite-2.6.3.tar.gzcd pysqlitepython setup.py build_static install
將setting 中的 DATABASES改成如下
DATABASES = {'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': '/home/sunbaigui/db.sqlite', (注意這個字尾名一定要寫對) # 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.
}
}
這些是我遇到的問題,僅供參考
相關文章
- 【常見錯誤】--Nltk使用錯誤
- AndroidStudio之NDK常見編譯錯誤Android編譯
- SSH常見錯誤
- MySQL 常見錯誤MySql
- Go常見錯誤集錦 | 字串底層原理及常見錯誤Go字串
- Go 常見錯誤集錦 | 字串底層原理及常見錯誤Go字串
- Mysql:1236常見錯誤MySql
- npm install 常見錯誤NPM
- 使用 CocoaPods 時常見錯誤
- mysql8 常見錯誤MySql
- MySQL 安裝常見錯誤MySql
- 常見的錯誤 SQL 用法SQL
- spring事務常見錯誤Spring
- opencv 編譯常見錯誤OpenCV編譯
- Go常見錯誤第15篇:interface使用的常見錯誤和最佳實踐Go
- 變數命名以及常見錯誤變數
- NPM INSTALL常見錯誤(windows篇)NPMWindows
- 常見的 PostgreSQL 升級錯誤SQL
- 8種常見SQL錯誤用法SQL
- 常見 HTTP 錯誤程式碼大全HTTP
- Shell:常見錯誤總結(一)
- 搭建github部落格常見錯誤Github
- PHP編譯安裝時常見錯誤解決辦法,php編譯常見錯誤PHP編譯
- PCB原理圖設計常見錯誤
- Git相關 | Git 常見的錯誤Git
- mdxbuilder打包mdx時的常見錯誤UI
- Hadoop常見錯誤及解決方案Hadoop
- 常見的授權錯誤及原因
- 常見的錯誤日誌型別型別
- 4- C語言常見錯誤C語言
- Flutter之異常和錯誤Flutter
- Go 常見錯誤集錦之 append 操作 slice 時的副作用GoAPP
- go語言初學者常見錯誤Go
- MySQL常見的8種SQL錯誤用法MySql
- Code Review 常見的5個錯誤模式View模式
- 派克斯常見錯誤程式碼詳解
- PbootCMS網站常見錯誤提示總結boot網站
- Golang開發常見的57個錯誤Golang
- 使用Python時常見的9個錯誤Python