mac下安装Mysql和MySQL-python_MySQL
程序员文章站
2022-04-11 09:19:31
...
python
mac下安装Mysql和MySQL-python
安装mysql
- mac mysql下载地址
- 装好后mysql路径是在 /usr/local/mysql 下
- 初始化mysql密码
/usr/local/mysql/bin/mysqladmin -u root password 12345678
安装MySQL-python
下载MySQL-python
安装MySQL-python
- 如果没有装gcc,去装xcode吧,网上也有教程不装xcode直接装gcc
- cd MySQL-python-1.2.3
- vim site.cfg
mysql_config = /usr/local/bin/mysql_config
- python setup.py build
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 futureerror: command 'cc' failed with exit status 1默认用cc编译器,导致挂了,所以换成gcc来编译
- CC=gcc ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future python setup.py build
- sudo python setup.py install
- vim ~/.bashrc
export DYLD_LIBRARY_PATH="/usr/local/mysql/lib"export VERSIONER_PYTHON_PREFER_64_BIT=noexport VERSIONER_PYTHON_PREFER_32_BIT=yes
就可以用了 import MySQLdb
上一篇: PHP引用返回用法示例,php用法示例_PHP教程
下一篇: 用PHP实现常见四种排序算法及实现原理
推荐阅读