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
For use in the Jupyter Notebook, install the `notebook` and `ipywidgets`
101
-
packages using pip...
101
+
packages using `pip`:
102
102
103
103
```
104
-
pip install "notebook>=5.3" "ipywidgets==7.5"
104
+
pip install "notebook>=5.3" "ipywidgets>=7.5"
105
105
```
106
106
107
-
or conda.
107
+
or `conda`:
108
108
109
109
```
110
-
conda install "notebook>=5.3" "ipywidgets=7.5"
110
+
conda install "notebook>=5.3" "ipywidgets>=7.5"
111
111
```
112
112
113
-
### JupyterLab Support (Python 3.5+)
113
+
### JupyterLab Support
114
114
115
115
For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
116
-
packages using pip...
116
+
packages using `pip`:
117
117
118
118
```
119
-
pip install jupyterlab "ipywidgets==7.5"
119
+
pip install jupyterlab "ipywidgets>=7.5"
120
120
```
121
121
122
-
or conda.
122
+
or `conda`:
123
123
124
124
```
125
-
conda install jupyterlab "ipywidgets=7.5"
125
+
conda install jupyterlab "ipywidgets>=7.5"
126
126
```
127
127
128
128
Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):
For use in the classic [Jupyter Notebook](https://jupyter.org/), install the `notebook` and `ipywidgets`
101
-
packages using pip...
101
+
packages using `pip`:
102
102
103
103
```
104
-
$ pip install "notebook>=5.3" "ipywidgets>=7.2"
104
+
$ pip install "notebook>=5.3" "ipywidgets>=7.5"
105
105
```
106
106
107
-
or conda.
107
+
or `conda`:
108
108
109
109
```
110
-
$ conda install "notebook>=5.3" "ipywidgets>=7.2"
110
+
$ conda install "notebook>=5.3" "ipywidgets>=7.5"
111
111
```
112
112
113
113
These packages contain everything you need to run a Jupyter notebook...
@@ -138,19 +138,19 @@ fig
138
138
139
139
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`.
140
140
141
-
#### JupyterLab Support (Python 3.5+)
141
+
#### JupyterLab Support
142
142
143
143
For use in [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/), install the `jupyterlab` and `ipywidgets`
144
-
packages using pip...
144
+
packages using `pip`:
145
145
146
146
```
147
147
$ pip install jupyterlab "ipywidgets>=7.5"
148
148
```
149
149
150
-
or conda.
150
+
or `conda`:
151
151
152
152
```
153
-
$ conda install jupyterlab "ipywidgets=7.5"
153
+
$ conda install jupyterlab "ipywidgets>=7.5"
154
154
```
155
155
156
156
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