Mac 上装 Python的SQLdb_MySQL
程序员文章站
2022-04-26 21:28:27
...
python
应该是Mac 10.9
然后装的时候,从网上下载
sudo easy_install mysql-python
果断失败了。
接着从网上下载了MySQL-python-1.2.3.tar
其实有1.2.5的版本,但是太新了,不敢用,好像目前也没tar的版本,只有zip的。
解压后,用vim打开site.cfg
有一行#mysql_config = mysql_config = /usr/local/bin/mysql_config
把前面的注释去掉,根据自己电脑mysql实际安装目录填写,如果你一路next的话,应该是下面这样的。
mysql_config = /usr/local/mysql/bin/mysql_config
然后用GCC安装,执行
python setup.py clean
python setup.py build
python setup.py install
但是第二条就出错了。
错误如下:
clang: error: unknown argument: '-mno-fused-madd' [-Wunused-command-line-argument-hard-error-in-future] clang: note: this will be a hard error (cannot be downgraded to a warning) in the future error: command 'cc' failed with exit status 1
然后果断查了下SOF,找到了解决的方法:
export CFLAGS=-Qunused-argumentsexport CPPFLAGS=-Qunused-arguments然后就装好了,折腾了半天,在这里记下来,希望大家也能不走弯路。
安装CJSON遇到了类似的问题,最后还需要 sudo 后面加-E才行。
上一篇: JWT原理和简单应用的介绍(附代码)
下一篇: 数据表在系统中表现形式_MySQL
推荐阅读
-
mac下pycharm设置python版本的图文教程
-
Mac python matplotlib Glyph xxxxx missing from current font的解决方案
-
在Mac OS上搭建Python的开发环境
-
如何在mac版本的python里安装pip
-
Mac OS X10.9安装的Python2.7升级Python3.3步骤详解
-
mac苹果系统怎么安装win10?mac上装win10的两种方法介绍
-
mac环境下Python虚拟环境的安装和配置
-
python生成随机mac地址的方法
-
在Mac OS系统上安装Python的Pillow库的教程
-
在mac下查找python包存放路径site-packages的实现方法