我正在关注http://docs.djangoproject.com/en/dev/intro/tutorial01/
的django教程但我的步骤有问题:python manage.py sql polls
django.core.exceptions.ImproperlyConfiguraed:加载pysqlite2模块时出错:没有名为pysqlite2的模块
我的系统是windows vista,而python版本是2.5 django 1.1版
我在setting.py中唯一改变的是 DATABASE_ENGINE ='sqlite3'#'postgresql_psycopg2','postgresql','mysql','sqlite3'或'oracle'。 DATABASE_NAME ='L:/django/mysite/mysite.db'
并在INSTALLED_APPS =()
中添加'mysite.polls'答案 0 :(得分:4)
从浏览开始,看起来Python 2.5的早期版本可能没有为Django安装pysqlite2来利用它。
因此,您可以download and install pysqlite或者升级python安装。 2.6效果很好。
希望有所帮助!