出现ImportError: cannot import name 'add_newdocs'的问题
原因:
如果在ipython book中,import numpy时报这个错误,而spyder中却能正常使用,那么很有可能是使用了anaconda作为开发环境后却自己卸载了anaconda自带的numpy,并且用pip重新安装了一个。解决方法很简单,conda install numpy
重新安装即可。
AttributeError: module 'numpy' has no attribute 'version'
这个错和上面同理,是在ipython book中,import pandas时报的错。解决方法同上。
总之如果在spyder中可以使用,但是到ipython book,import相应的包时有奇怪的报错,基本就是卸载了anaconda自带的包而用pip重新安装了这些包,只要用conda install 重新安装即可。
作者:wong小尧
链接:https://www.jianshu.com/p/60aa36d9e46f
来源:简书