I use Django dev(1.6.x) from git repo and I want to use MySQL , But on the settings.py file can not setup MySQL because MySQL is not supported in python3 and Django, So I used pymysql package on python3.x without any problem but in Django can not setup that on settings.py too.
Can I use mysql(or pymysql or ?) on django with python3 ?
pymysql for python 3 is not a Django DB backend, however there is evidence that some work has been made porting the MySQL Backend to be Python 3 compatible at Django Python 3 MySQL backend changes.
Other pages show that the MySQL backend given with Django 1.5 works with Python 3 :
Django MySQL Works on Python 3.2.2
The default MySQL wrapper available on Python 2.x (mysql-python) does however not support Python 3.
I suspect the package at MySQL Python 3 to be compatible, you might give it a try.
Also make sure you’re running Django with Python 3.2 or 3.3 or above. Python 3.0 is not supported.
If it still does not work after these checks, please post your DATABASES settings in case something was wrong in it.
Also, I don’t find anything above Django 1.5 in the Django repos, are you sure it’s 1.6.x ?