Skip to content

Commit dd73297

Browse files
Update README.md
1 parent 8f6dc80 commit dd73297

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333

3434
## Data Science Workspaces
3535

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.
3737

3838
## Quickstart
3939

4040
`pip install plotly==4.14.3`
4141

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"`):
4343

4444
```python
4545
import plotly.graph_objects as go
@@ -95,22 +95,37 @@ or conda.
9595
conda install -c plotly plotly=4.14.3
9696
```
9797

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+
98113
### JupyterLab Support
99114

100115
For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
101116
packages using `pip`:
102117

103118
```
104-
pip install jupyterlab>=3 "ipywidgets>=7.6"
119+
pip install jupyterlab "ipywidgets>=7.5"
105120
```
106121

107122
or `conda`:
108123

109124
```
110-
conda install jupyterlab>=3 "ipywidgets>=7.6"
125+
conda install jupyterlab "ipywidgets>=7.5"
111126
```
112127

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):
114129

115130
```
116131
# Basic JupyterLab renderer support
@@ -122,21 +137,6 @@ jupyter labextension install @jupyter-widgets/jupyterlab-manager plotlywidget@4.
122137

123138
Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab.
124139

125-
### Jupyter Notebook Support
126-
127-
For use in the Jupyter Notebook, install the `notebook` and `ipywidgets`
128-
packages using `pip`:
129-
130-
```
131-
pip install "notebook>=5.3" "ipywidgets>=7.5"
132-
```
133-
134-
or `conda`:
135-
136-
```
137-
conda install "notebook>=5.3" "ipywidgets>=7.5"
138-
```
139-
140140
### Static Image Export
141141

142142
plotly.py supports [static image export](https://plotly.com/python/static-image-export/),

0 commit comments

Comments
 (0)