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
+8-25Lines changed: 8 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,44 +112,27 @@ For use in JupyterLab, install the `jupyterlab` and `ipywidgets`
112
112
packages using pip...
113
113
114
114
```
115
-
pip install jupyterlab==1.2 "ipywidgets==7.5"
115
+
pip install jupyterlab "ipywidgets=7.5"
116
116
```
117
117
118
118
or conda.
119
119
120
120
```
121
-
conda install jupyterlab=1.2
122
-
conda install "ipywidgets=7.5"
121
+
conda install jupyterlab "ipywidgets=7.5"
123
122
```
124
123
125
124
Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):
126
125
127
126
```
128
-
# Avoid "JavaScript heap out of memory" errors during extension installation
Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):
135
135
136
136
```
137
-
# Avoid "JavaScript heap out of memory" errors during extension installation
or using `FigureWidget` objects (if the "OPTIONAL" step above was executed).
179
161
180
162
```python
181
163
import plotly.graph_objects as go
182
164
fig = go.FigureWidget(data=go.Bar(y=[2, 3, 1]))
183
165
fig
184
166
```
185
167
168
+
Please check out our [Troubleshooting guide](https://plotly.com/python/troubleshooting/) if you run into any problems with JupyterLab.
169
+
186
170
<!-- #region -->
187
171
188
172
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`.
Copy file name to clipboardExpand all lines: doc/python/troubleshooting.md
+18-2Lines changed: 18 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,14 +75,30 @@ To list your current extensions, run the following command in a terminal shell:
75
75
$ jupyter labextension list
76
76
```
77
77
78
-
To uninstall your `plotly` extensions, run the following commands in a terminal shell before reinstalling them by following the instructions in the [Getting Started guide](/python/getting-started):
78
+
To uninstall your Plotly extensions, run the following commands in a terminal shell before reinstalling them by following the instructions in the [Getting Started guide](/python/getting-started):
0 commit comments