mysql - Unhandled exception in thread started python manage.py runserver -
recently installed python 3.4.3 in environment (windows 8.1) , tried deploy simple django server. when runned command python manage.py runserver
following exceptions appeared:
unhandled exception in thread started .wrapper @ 0x031b5d68>
i believe exception happened due error or misconception when tried install mysql-python
. changed database
config in settings.py
"django.db.backends.mysql" "django.db.backends.sqlite3" , runned pretty well. configs tried following:
# defective configuration databases = { 'default': { 'engine': 'django.db.backends.mysql', 'name': 'test', 'user': 'user', 'password': 'doideira', 'host': '127.0.0.1', 'port': '3306', } }
but using sqlite works:
# sqlite 3 works databases = { 'default': { 'engine': 'django.db.backends.sqlite3', 'name': os.path.join(base_dir, 'db.sqlite3'), } }
i experiencing troubles , advice appreciated. know why happening , how can workaround it.
further info:
- mysql version 5.6.4
- mysql python version 1.2.5
- python version 1.2.5
- windows 8.1
- django version 1.8.1
the full log error can seen here.
update saturday 16, may 2015:
i came simple solution: downgrade python 3.x 2.7.x. explain steps below the answer of question. found this answer useful, i'm using python 2.7 ok.
i found article answers question "should use python 2 or python 3 development activity" , made me decide whether keep python3 or python2. since python3 hasn't strong library support, wait little more until update it.
for python 3 need install mysqlclient , pymysql
Comments
Post a Comment