在PyCharm中新建Web2Py项目后提示没有pymysql,自动安装失败,如图:
在终端输入
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
pip install pymysql
然而我的项目中依然提示没有pymysql,结果发现只是Python版本选错了
(ノ▼Д▼)ノ
我pymysql是安装到Python2.7,而PyCharm项目是用Python2.6
所以就到Preferences
> Project Interpreter
中调成Python2.7就行了,
http://stackoverflow.com/questions/36956124/permision-issues-while-using-and-installing-python-packages