Skip to content

Commit 66c3145

Browse files
authored
Add ipywidgets install for plotly
I am using just an install of JupyterLab, not through Anaconda, and I needed to also install `ipywidgets` for Plotly to work. This is mentioned in their documentation: https://plotly.com/python/getting-started/#jupyterlab-support
1 parent 829265e commit 66c3145

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

episodes/data-visualisation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ plotting package in Python called Plotly. First let’s install and then use the
146146
```python
147147
# uncomment below to install plotly if the import fails.
148148
# !pip install plotly
149+
# you may also need to install ipywidgets.
150+
# !pip install ipywidgets
149151
import plotly.express as px
150152
```
151153

0 commit comments

Comments
 (0)