Skip to content

updated plotly.py version #194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 12, 2019
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