Home > Database > Mysql Tutorial > mac下安装Mysql和MySQL-python_MySQL

mac下安装Mysql和MySQL-python_MySQL

WBOY
Release: 2016-06-01 13:14:04
Original
1011 people have browsed it

python

mac下安装Mysql和MySQL-python

安装mysql

  1. mac mysql下载地址
  2. 装好后mysql路径是在 /usr/local/mysql 下
  3. 初始化mysql密码
/usr/local/mysql/bin/mysqladmin -u root password 12345678
Copy after login

安装MySQL-python

下载MySQL-python

安装MySQL-python

  1. 如果没有装gcc,去装xcode吧,网上也有教程不装xcode直接装gcc
  2. cd MySQL-python-1.2.3
  3. vim site.cfg
mysql_config = /usr/local/bin/mysql_config
Copy after login
  1. 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来编译
Copy after login
  1. CC=gcc ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future python setup.py build
  2. sudo python setup.py install
  3. vim ~/.bashrc
export DYLD_LIBRARY_PATH="/usr/local/mysql/lib"export VERSIONER_PYTHON_PREFER_64_BIT=noexport VERSIONER_PYTHON_PREFER_32_BIT=yes
Copy after login

就可以用了 import MySQLdb

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template