PyCharm自动安装pymysql包失败
2017-03-07 本文已影响0人
huihut
问题描述:
在PyCharm中新建Web2Py项目后提示没有pymysql,自动安装失败,如图:
解决方案:
1. 安装pip
在终端输入
pip -V
如果显示版本路径,就说明pip已经安装了
如果没有安装pip则需要在终端安装
①使用脚本安装pip:
-
各平台(管理员运行):
python get-pip.py
②使用包管理器安装pip:
-
Mac:
sudo easy_install pip
-
Debian & Ubuntu:
sudo apt-get install python-pip
-
Fedora:
sudo yum install python-pip
2. 安装pymysql
pip install pymysql
3. 正常情况下以上两步就行了。
然而我的项目中依然提示没有pymysql,结果发现只是Python版本选错了
(ノ▼Д▼)ノ
我pymysql是安装到Python2.7,而PyCharm项目是用Python2.6
所以就到Preferences
> Project Interpreter
中调成Python2.7就行了,
参考资料
我的博客:https://blog.huihut.com/
转载请注明出处:https://blog.huihut.com/2017/01/21/PyCharmInstallPymysqlFail/