标签:parser article images dev pip question net python3 detail
pip3 install mysql
1、错误1
原因:在 Python 3.x 版本后,ConfigParser.py 已经更名为 configparser.py 所以出错!
解决,将模块cp一份为ConfigParser.py
2、
find / -name mysql_config 没有
你需要安装yum install mysql-devel,然后在安装MySQL (pip3 install mysql)
安装成功,但python3还是不能用mysql,因为python不支持mysqldb模块了,需要使用其他模块,所以上述内容对python2有意义。
python3安装mysql相关模块
使用sqlite数据库
http://stackoverflow.com/questions/10784132/django-no-module-named-sqlite3
http://stackoverflow.com/questions/1210664/no-module-named-sqlite3
标签:parser article images dev pip question net python3 detail
原文地址:http://www.cnblogs.com/daduryi/p/6833312.html