本文介绍了为什么easy_install无法找到MySQLdb?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我尝试过的:
$ easy_install-2.6 -d /home/user/lib/python2.6 MySQLdb
Searching for MySQLdb
Reading http://pypi.python.org/simple/MySQLdb/
Couldn't find index page for 'MySQLdb' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading http://pypi.python.org/simple/
No local packages or download links found for MySQLdb
error: Could not find suitable distribution for Requirement.parse('MySQLdb')
推荐答案
您使用的软件包名称错误.
You have the wrong package name.
MySQL-python 是正确的选择:
easy_install MySQL-python
或
pip install MySQL-python
这篇关于为什么easy_install无法找到MySQLdb?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!