Skip to content

Commit ec1e83b

Browse files
readme version tweaks
1 parent 5961480 commit ec1e83b

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Our recommended IDE for Plotly’s Python graphing library is Dash Enterprise’
3939

4040
`pip install plotly==4.14.2`
4141

42-
Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.2"`):
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
@@ -98,31 +98,31 @@ conda install -c plotly plotly=4.14.2
9898
### Jupyter Notebook Support
9999

100100
For use in the Jupyter Notebook, install the `notebook` and `ipywidgets`
101-
packages using pip...
101+
packages using `pip`:
102102

103103
```
104-
pip install "notebook>=5.3" "ipywidgets==7.5"
104+
pip install "notebook>=5.3" "ipywidgets>=7.5"
105105
```
106106

107-
or conda.
107+
or `conda`:
108108

109109
```
110-
conda install "notebook>=5.3" "ipywidgets=7.5"
110+
conda install "notebook>=5.3" "ipywidgets>=7.5"
111111
```
112112

113-
### JupyterLab Support (Python 3.5+)
113+
### JupyterLab Support
114114

115115
For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
116-
packages using pip...
116+
packages using `pip`:
117117

118118
```
119-
pip install jupyterlab "ipywidgets==7.5"
119+
pip install jupyterlab "ipywidgets>=7.5"
120120
```
121121

122-
or conda.
122+
or `conda`:
123123

124124
```
125-
conda install jupyterlab "ipywidgets=7.5"
125+
conda install jupyterlab "ipywidgets>=7.5"
126126
```
127127

128128
Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):

doc/python/getting-started.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ We also encourage you to join the [Plotly Community Forum](http://community.plot
5656

5757
### Installation
5858

59-
`plotly` may be installed using pip...
59+
`plotly` may be installed using `pip`:
6060

6161
```
6262
$ pip install plotly==4.14.2
6363
```
6464

65-
or conda.
65+
or `conda`:
6666

6767
```
6868
$ conda install -c plotly plotly=4.14.2
@@ -98,16 +98,16 @@ IFrame(snippet_url + 'getting-started', width='100%', height=630)
9898
#### Jupyter Notebook Support
9999

100100
For use in the classic [Jupyter Notebook](https://jupyter.org/), install the `notebook` and `ipywidgets`
101-
packages using pip...
101+
packages using `pip`:
102102

103103
```
104-
$ pip install "notebook>=5.3" "ipywidgets>=7.2"
104+
$ pip install "notebook>=5.3" "ipywidgets>=7.5"
105105
```
106106

107-
or conda.
107+
or `conda`:
108108

109109
```
110-
$ conda install "notebook>=5.3" "ipywidgets>=7.2"
110+
$ conda install "notebook>=5.3" "ipywidgets>=7.5"
111111
```
112112

113113
These packages contain everything you need to run a Jupyter notebook...
@@ -138,19 +138,19 @@ fig
138138

139139
See [_Displaying Figures in Python_](/python/renderers/) for more information on the renderers framework, and see [_Plotly FigureWidget Overview_](/python/figurewidget/) for more information on using `FigureWidget`.
140140

141-
#### JupyterLab Support (Python 3.5+)
141+
#### JupyterLab Support
142142

143143
For use in [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/), install the `jupyterlab` and `ipywidgets`
144-
packages using pip...
144+
packages using `pip`:
145145

146146
```
147147
$ pip install jupyterlab "ipywidgets>=7.5"
148148
```
149149

150-
or conda.
150+
or `conda`:
151151

152152
```
153-
$ conda install jupyterlab "ipywidgets=7.5"
153+
$ conda install jupyterlab "ipywidgets>=7.5"
154154
```
155155

156156
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

Comments
 (0)