之前在python3.6版本下安装了pandas,但是import的时候总是出错
File "/usr/local/Cellar/numpy/1.13.1_1/libexec/nose/lib/python2.7/site-packages/nose/core.py", line 11, in <module> from nose.config import Config, all_config_files File "/usr/local/Cellar/numpy/1.13.1_1/libexec/nose/lib/python2.7/site-packages/nose/config.py", line 68 except ConfigParser.Error, exc: ^ SyntaxError: invalid syntax
其实很容易可以看出是版本问题,因为本来在3.6下运行的,nose目录下config.py里适应的却是2.7版本的。网上查了好多方法,都不行,结果今天把我lib目录下python2.7整个文件夹删除了只留下python3.6,就可以了。