mac下安装Mysql和MySQL-python_MySQL

WBOY
풀어 주다: 2016-06-01 13:14:04
원래의
992명이 탐색했습니다.

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
로그인 후 복사

安装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
로그인 후 복사
  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来编译
로그인 후 복사
  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
로그인 후 복사

就可以用了 import MySQLdb

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!