先解决一个大坑:权限问题。
mac默认会安装Python,但是这个python的权限很诡异,即时用root帐号也无法pip uninstall 模块。
解决方法如下:
【pip安装pandas遇到的坑】pandas-0.22.0版本需要numpy版本>=1.9.0,因此需要先升级numpy
- sudo pip install numpu -U -i https://pypi.tuna.tsinghua.edu.cn/simple/
- sudo pip install pandas -U -i https://pypi.tuna.tsinghua.edu.cn/simple/
复制代码
【pip安装tushare】
- sudo pip install tushare -U -i https://pypi.tuna.tsinghua.edu.cn/simple/
复制代码
|