windows python 3.5.2 中 运行 VPython 的 AttributeError
AttributeError to run VPython within python 3.5.2 on windows
我正在使用 pyhton 3.5.2 并打算在我的 windows 机器上 运行 VPython
。
我刚刚通过 pip
安装了 VPython
,正确。
不过如我要运行的测试脚本,如下:
from vpython import *
box()
将引发错误:
get_ipython().kernel.comm_manager.register_target('glow', GlowWidget)
AttributeError: 'NoneType' object has no attribute 'kernel'
有人知道这个问题吗?
可能未回答重复:here
我删除所有版本后重新安装3.5版本,出现错误,找不到可用的init.tcl。此外,空闲编辑器将不会启动!
冲突已更改您本地目录中的 tcl 文件。 idle 的问题可能是 tkInter
文件损坏。
只需将 C:\Python35\tcl
完全复制到 C:\Python35\Lib
。这两个问题都必须解决。
我正在使用 pyhton 3.5.2 并打算在我的 windows 机器上 运行 VPython
。
我刚刚通过 pip
安装了 VPython
,正确。
不过如我要运行的测试脚本,如下:
from vpython import *
box()
将引发错误:
get_ipython().kernel.comm_manager.register_target('glow', GlowWidget) AttributeError: 'NoneType' object has no attribute 'kernel'
有人知道这个问题吗?
可能未回答重复:here
我删除所有版本后重新安装3.5版本,出现错误,找不到可用的init.tcl。此外,空闲编辑器将不会启动!
冲突已更改您本地目录中的 tcl 文件。 idle 的问题可能是 tkInter
文件损坏。
只需将 C:\Python35\tcl
完全复制到 C:\Python35\Lib
。这两个问题都必须解决。