我收到错误
pip版
pip-3.3 -V 来自/usr/local/lib/python3.3/site-packages/pip-1.4.1-py3.3.egg(python 3.3)的pip 1.4.1
如何在Python3.3 helpp中安装MySQLdb ..
root@thinkpad:~# pip-3.3 install MySQL-python
Downloading/unpacking MySQL-python
Downloading MySQL-python-1.2.4.zip (113kB): 113kB downloaded
Running setup.py egg_info for package MySQL-python
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/tmp/pip_build_root/MySQL-python/setup.py", line 14, in <module>
from setup_posix import get_config
File "./setup_posix.py", line 2, in <module>
from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 16, in <module>
File "/tmp/pip_build_root/MySQL-python/setup.py", line 14, in <module>
from setup_posix import get_config
File "./setup_posix.py", line 2, in <module>
from ConfigParser import SafeConfigParser
ImportError: No module named 'ConfigParser'
----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /tmp/pip_build_root/MySQL-python
Storing complete log in /root/.pip/pip.log
答案 0 :(得分:18)
在python3中,ConfigParser
已重命名为configparser
。似乎MySQL-python
不支持python3。尝试:
$ pip install PyMySQL
PyMySQL是一个不同的模块,但它支持python3。
答案 1 :(得分:4)
在python3中,按source安装MySQL-python-1.2.5,在此之前,您需要修改源代码,如下所述:
ConfigParser
替换为configparser
except TypeError, m:
到except TypeError as m:
except TypeError, msg:
到except TypeError as msg:
raise errorclass, errorvalue
为raise errorclass(errorvalue)
要了解更多信息,请参阅Python3 porting guide。
答案 2 :(得分:0)
pip install --allow-external mysql-connector-python
修改settings.py
'ENGINE': 'mysql.connector.django',