NameError: name 'get_ipython' is not defined

NameError: name 'get_ipython' is not defined_第1张图片

 

 出错原因一:

将.ipynb文件保存为.py文件,用python命令直接运行py文件时会出现错误:NameError:name 'get_ipython' is not defined;

解决方案一:

用ipython运行py文件

出错原因二:

当用ipython运行该文件时会出现No event loop integration for 'inline'

解决方案二:

把matplotlib inline改为matplotlib auto

修改后的py文件如图所示:

NameError: name 'get_ipython' is not defined_第2张图片

参考文章:

https://stackoverflow.com/questions/32538758/nameerror-name-get-ipython-is-not-defined

 

你可能感兴趣的:(NameError: name 'get_ipython' is not defined)