Skip to content

Update getting_started and requirements.txt to final versions #98

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 1 commit into from
Jul 16, 2019
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions python/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,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.0.0rc1
$ pip install plotly==4.0.0
```
or conda.

```
$ conda install -c plotly/label/test plotly=4.0.0rc1
$ conda install -c plotly plotly=4.0.0
```
This package contains everything you need to write figures to standalone HTML files.

Expand Down Expand Up @@ -131,10 +131,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
jupyter labextension install @jupyter-widgets/[email protected] --no-build

# jupyterlab renderer support
jupyter labextension install [email protected]-rc.1 --no-build
jupyter labextension install [email protected] --no-build

# FigureWidget support
jupyter labextension install [email protected]-rc.1 --no-build
jupyter labextension install [email protected] --no-build

# JupyterLab chart editor support (optional)
jupyter labextension install [email protected] --no-build
Expand Down Expand Up @@ -212,13 +212,13 @@ choropleth figure factory is one such example. These shape files are distributed
separate `plotly-geo` package. This package can be installed using pip...

```
$ pip install plotly-geo==1.0.0rc1
$ pip install plotly-geo==1.0.0
```

or conda.

```
$ conda install -c plotly/label/test plotly-geo=1.0.0rc1
$ conda install -c plotly plotly-geo=1.0.0
```

See [*USA County Choropleth Maps in Python*](https://plot.ly/python/county-choropleth/) for more information on the county choropleth figure factory.
Expand All @@ -228,13 +228,13 @@ The `chart-studio` package can be used to upload plotly figures to Plotly's Char
Studio Cloud or On-Prem services. This package can be installed using pip...

```
$ pip install chart-studio==1.0.0rc1
$ pip install chart-studio==1.0.0
```

or conda.

```
$ conda install -c plotly/label/test chart-studio=1.0.0rc1
$ conda install -c plotly chart-studio=1.0.0
```

> **Note:** This package is optional, and if it is not installed it is not possible for figures to be uploaded to the Chart Studio cloud service.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
plotly==4.0.0a9
plotly==4.0.0
jupytext==1.1.1
jupyter
notebook
Expand Down