作者主页(文火冰糖的硅基工坊):文火冰糖(王文兵)的博客_文火冰糖的硅基工坊_CSDN博客
本文网址:https://blog.csdn.net/HiWangWenBing/article/details/123836138
目录
问题描述
一、升级jupyter?lab
二、安装jupyterlab拓展
问题描述
在练习《python数据手册》中matplotlib部分时,书中提到的魔术方法。
% matplotlib notebook
(1)无法使用并报错。
(2)No module named 'ipywidgets' jupter.
pip install --upgrade jupyterlab
备注:conda install会有些问题,建议用pip install
二、安装jupyterlab拓展
# 1.
conda install -c conda-forge ipympl
# 2. If using JupyterLab
conda install nodejs
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter lab build
# 3. Later, if updating a previous Lab install:
conda install ipympl
jupyter lab build
# 可选
jupyter nbextension enable --py widgetsnbextension
重启jupyter,此时交互式绘图模式已经可以正常使用,不论使用%maytplotlib notebook 还是?%matplotlib widget 均可以进入交互式绘图模式。
作者主页(文火冰糖的硅基工坊):文火冰糖(王文兵)的博客_文火冰糖的硅基工坊_CSDN博客
本文网址:
|