ImportError: No module named pandas解决方案

A. download first and install miniconda using the following code:

bash Miniconda2-latest-MacOSX-x86_64.sh
B. create an env for your project using following code:

conda create --name trypandas numpy pandas jupyter
C. going to your env and try jupyter notebook with pandas using:

source activate trypandas
jupyter notebook

D.重启电脑

E.pip install pandas

参考http://stackoverflow.com/questions/38061426/importerror-no-module-named-pandas

猜你喜欢

转载自qianjiangbing.iteye.com/blog/2363583