正在阅读Panel用户指南-此页面(https://panel.pyviz.org/user_guide/Components.html)上使用.extend的任何示例似乎均不起作用,并且正在返回
AttributeError: 'Tabs' object has no attribute 'extend'
并且gridspec示例返回:
AttributeError: module 'panel' has no attribute 'GridSpec'
当前使用Panel 0.3.1
本
答案 0 :(得分:1)
面板当前为0.6(https://anaconda.org/pyviz/panel),而0.3.1将不支持任何最近的添加。因此,您绝对应该升级,这时它应该与网站匹配。如果您确实想运行旧版本,请仅使用该软件包随附的示例,这些示例将与该版本中的可用版本匹配。
答案 1 :(得分:1)
不确定这是版本问题:我正在使用v.0.6.2并运行以下示例:
radio_group = pn.widgets.RadioButtonGroup(name='Radio Button Group',
options=['Biology', 'Chemistry', 'Physics'],
button_type='success')
radio_group
也会产生同样的错误:
AttributeError: 'RadioButtonGroup' object has no attribute 'value'