2、后来使用国内镜像源,还是报错,无法安装。
pip3 install 库名 -i 镜像源地址
例如:pip3 install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple
镜像源地址
清华: https://pypi.tuna.tsinghua.edu.cn/simple
豆瓣: http://pypi.douban.com/simple/
阿里: http://mirrors.aliyun.com/pypi/simple/
3、经网上查询,需使用”--trusted-host pypi.tuna.tsinghua.edu.cn ",可安装成功。
即:pip install 库名 -i 镜像源地址 --trusted-host pypi.tuna.tsinghua.edu.cn
例如:pip3 install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn
4、验证pymysql是否安装成功。
>>>import pymysql 不报错就行。
在 Mac OS X 下安装 python-mysql方法如下:1、先把之前装的卸载干净:
pip uninstall mysql-python
brew uninstall mysql-connector-c
2、现在设置下mysql_config路径:
首先修改系统配置文件vim ~/.bash_profile或者有些人是 ~/.profile,export PATH=$PATH:/Applications/MAMP/Library/bin
这里/Applications/MAMP/Library/bin是MAMP的mysql配置文件路径
3、安装brew install mysql-connector-cpip install mysql-python即可。
在mac上用python连接远程mysql数据库需要在本机安装mysql吗mysql-python 是需要本地安装了mysql才行。你安装的xmapp里面的mysql, mysql-python可能没找到正确的配置。
如果不是生产环境,使用 mysql-connector 替代,这个是 mysql官方推荐的驱动,纯python实现。不需要本地配置本地mysql。使用方法和 mysqldb一样。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)