‘pip install MySQL-python’因’IndexError’而失败
作者:互联网
我在OSX El Capitan上,使用Python 2.7(Anaconda).启动命令pip install MySQL-python yield:
Collecting MySQL-python
Using cached MySQL-python-1.2.5.zip
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/private/var/folders/d2/gd004m2s35z5dlyz9mfn6sc40000gn/T/pip-build-FYvb_T/MySQL-python/setup.py", line 17, in <module>
metadata, options = get_config()
File "setup_posix.py", line 53, in get_config
libraries = [ dequote(i[2:]) for i in libs if i.startswith(compiler_flag("l")) ]
File "setup_posix.py", line 8, in dequote
if s[0] in "\"'" and s[0] == s[-1]:
IndexError: string index out of range
这些都不起作用(以相同的错误退出).
> pip install mysqlclient
> easy_install MySQL-python
点子是最新的.我基本上试图遵循相关问题中的所有建议,但都没有成功.任何帮助表示赞赏,谢谢!
解决方法:
从this blog.复制
通过查找mysql-connector-cmight得出的结论,通过brew安装的配置可能不正确,打开/usr/local/bin / mysql_config脚本来修改它的一些内容:
#Create options
Libs = "-L$pkglibdir "
Libs = "$libs -l"
变成:
#Create options
Libs = "-L$pkglibdir"
Libs = "$libs -lmysqlclient -lssl -lcrypto"
救
然后重新安装mysql-python:
pip install mysql-python
标签:python,mysql,pip,osx-elcapitan,mysql-python 来源: https://codeday.me/bug/20190923/1815621.html