jupyterlab/jupyter notebook 上使用ipywidgets和组件不显示问题

jupyterlab/jupyter notebook 上使用ipywidgets

今天给大家分享下最近遇到的一个编程小问题,在jupyterlab下ipywidgets组件无法显示。

首先推荐大家使用conda去管理虚拟环境,这样我们安装系统依赖也可以使用conda会方便很多,而且conda使用不限制系统。

jupyterlab 安装ipywidgets

  • 在需要使用ipywidgets包的环境安装ipywidgets
# 比如我在虚拟环境名称为office的环境安装ipywidgets
conda activate office
pip install ipywidgets
  • 安装nodejs=
conda install -y nodejs
  • 查看jupyterlab版本
jupyter lab --version
  • 安装jupyterlab_widgets插件
# jupyterlab 3.x
pip install jupyterlab_widgets

#  jupyterlab 1 或者 2
jupyter labextension install @jupyter-widgets/jupyterlab-manager@版本号

# 比如我的jupyterlab是1.2.26
jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1

jupyterlab版本和可安装的jupyter-widgets插件版本对应关系:

jupyterlab jupyter-widgets
1.0.x @jupyter-widgets/jupyterlab-manager@1.0
1.1.x @jupyter-widgets/jupyterlab-manager@1.1
1.2.x @jupyter-widgets/jupyterlab-manager@1.1
2.x @jupyter-widgets/jupyterlab-manager@2
  • 测试使用
import ipywidgets as widgets

a = widgets.FloatText()
b = widgets.FloatSlider()
display(a,b)

mylink = widgets.jslink((a, 'value'), (b, 'value'))

jupyter notebook 安装ipywidgets

pip install ipywidgets
jupyter nbextension enable --py widgetsnbextension

参考:

Ipywidgets Installation

Jupyter Widgets JupyterLab Extension

版权声明:本文《jupyterlab/jupyter notebook 上使用ipywidgets和组件不显示问题》为网站老表爱技术作者「oldwatch」的原创文章,请联系微信:pythonbrief 获取转载权限,或者提问交流。
原文链接:https://python-brief.com/121.html
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇