Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions python/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ Thanks to deep integration with the [orca](https://github.com/plotly/orca) image
plotly.py may be installed using pip...

```
$ pip install plotly==4.2.1
$ pip install plotly==4.3.0
```
or conda.

```
$ conda install -c plotly plotly=4.2.1
$ conda install -c plotly plotly=4.3.0
```
This package contains everything you need to write figures to standalone HTML files.

Expand Down Expand Up @@ -107,13 +107,13 @@ For use in [JupyterLab](https://jupyterlab.readthedocs.io/en/stable/), install t
packages using pip...

```
$ pip install jupyterlab==1.0 "ipywidgets>=7.5"
$ pip install jupyterlab==1.2 "ipywidgets>=7.5"
```

or conda.

```
$ conda install jupyterlab=1.0 "ipywidgets>=7.5"
$ conda install jupyterlab=1.2 "ipywidgets>=7.5"
```

Then run the following commands to install the required JupyterLab extensions (note that this will require [`node`](https://nodejs.org/) to be installed):
Expand All @@ -126,13 +126,13 @@ export NODE_OPTIONS=--max-old-space-size=4096
set NODE_OPTIONS=--max-old-space-size=4096

# Jupyter widgets extension
jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.0 --no-build
jupyter labextension install @jupyter-widgets/jupyterlab-manager@1.1 --no-build

# jupyterlab renderer support
jupyter labextension install jupyterlab-plotly@1.2.0 --no-build
jupyter labextension install jupyterlab-plotly@1.3.0 --no-build

# FigureWidget support
jupyter labextension install plotlywidget@1.2.0 --no-build
jupyter labextension install plotlywidget@1.3.0 --no-build

# Build extensions (must be done to activate extensions since --no-build is used above)
jupyter lab build
Expand Down