You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-20
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@
33
33
34
34
## Data Science Workspaces
35
35
36
-
Our recommended IDE for Plotly’s Python graphing library is Dash Enterprise’s[Data Science Workspaces](https://plotly.com/dash/workspaces/), which has both Jupyter notebook and Python code file support.
36
+
Our recommended IDE for Plotly’s Python graphing library is Dash Enterprise’s[Data Science Workspaces](https://plotly.com/dash/workspaces/), which has both Jupyter notebook and Python code file support.
37
37
38
38
## Quickstart
39
39
40
40
`pip install plotly==4.14.3`
41
41
42
-
Inside [Jupyter](https://jupyter.org/install) (installable with `pip install "jupyterlab>=3" "ipywidgets>=7.6"`):
42
+
Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.5"`):
43
43
44
44
```python
45
45
import plotly.graph_objects as go
@@ -95,22 +95,37 @@ or conda.
95
95
conda install -c plotly plotly=4.14.3
96
96
```
97
97
98
+
### Jupyter Notebook Support
99
+
100
+
For use in the Jupyter Notebook, install the `notebook` and `ipywidgets`
101
+
packages using `pip`:
102
+
103
+
```
104
+
pip install "notebook>=5.3" "ipywidgets>=7.5"
105
+
```
106
+
107
+
or `conda`:
108
+
109
+
```
110
+
conda install "notebook>=5.3" "ipywidgets>=7.5"
111
+
```
112
+
98
113
### JupyterLab Support
99
114
100
115
For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
101
116
packages using `pip`:
102
117
103
118
```
104
-
pip install jupyterlab>=3 "ipywidgets>=7.6"
119
+
pip install jupyterlab "ipywidgets>=7.5"
105
120
```
106
121
107
122
or `conda`:
108
123
109
124
```
110
-
conda install jupyterlab>=3 "ipywidgets>=7.6"
125
+
conda install jupyterlab "ipywidgets>=7.5"
111
126
```
112
127
113
-
For JupyterLab 2 or earlier, run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):
128
+
Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):
0 commit comments