在Python2.7中,我的所有可视脚本运行正常。当我使用Python3.5时,我收到错误消息:
get_ipython().kernel.comm_manager.register_target('glow', GlowWidget)
AttributeError: 'NoneType' object has no attribute 'kernel'
当我谷歌的错误消息,人们说你应该使用jupyter笔记本。但是没有jupyter可以运行我的旧脚本吗?
答案 0 :(得分:0)
你应该安装ipython和Jupyter Notebook,如下所示
sudo apt-get install ipython ipython-notebook
pip install jupyter
然后您可以在终端中使用jupyter notebook
来启动笔记本,您可以在浏览器中创建新的vpython笔记本。
create vpython
然后您可以编写vpython脚本并查看您创建的对象,如下所示。 draw a sphere
您也可以参考其他博客来安装您的jupyter笔记本等。但请确保您已安装vpython。