Skip to content

Commit 878da7e

Browse files
Merge pull request #2295 from plotly/pin_orca_docs
Pin orca docs
2 parents 604b439 + a364a6f commit 878da7e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.circleci/create_conda_optional_env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ if [ ! -d $HOME/miniconda/envs/circle_optional ]; then
1919
requests nbformat six retrying psutil pandas decorator pytest mock nose poppler xarray scikit-image ipython jupyter ipykernel ipywidgets
2020

2121
# Install orca into environment
22-
$HOME/miniconda/bin/conda install --yes -n circle_optional -c plotly plotly-orca
22+
$HOME/miniconda/bin/conda install --yes -n circle_optional -c plotly plotly-orca==1.2.1
2323
fi

doc/python/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ installation of the plotly [orca](https://github.com/plotly/orca) command line u
199199
These dependencies can all be installed using conda:
200200

201201
```
202-
$ conda install -c plotly plotly-orca psutil requests
202+
$ conda install -c plotly plotly-orca==1.2.1 psutil requests
203203
```
204204

205205
Or, `psutil` and `requests` can be installed using pip...

doc/python/orca-management.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Searched for executable 'orca' on the following path:
164164
165165
If you haven't installed orca yet, you can do so using conda as follows:
166166
167-
$ conda install -c plotly plotly-orca
167+
$ conda install -c plotly plotly-orca==1.2.1
168168
169169
Alternatively, see other installation methods in the orca project README at
170170
https://github.com/plotly/orca.

doc/python/static-image-export.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ Static image generation requires the [orca](https://github.com/plotly/orca) comm
4747
##### conda
4848
Using the [conda](https://conda.io/docs/) package manager, you can install these dependencies in a single command:
4949
```
50-
$ conda install -c plotly plotly-orca psutil requests
50+
$ conda install -c plotly plotly-orca==1.2.1 psutil requests
5151
```
5252

53-
**Note:** Even if you do not want to use conda to manage your Python dependencies, it is still useful as a cross platform tool for managing native libraries and command-line utilities (e.g. git, wget, graphviz, boost, gcc, nodejs, cairo, etc.). For this use-case, start with [Miniconda](https://conda.io/miniconda.html) (~60MB) and tell the installer to add itself to your system `PATH`. Then run `conda install plotly-orca` and the orca executable will be available system wide.
53+
**Note:** Even if you do not want to use conda to manage your Python dependencies, it is still useful as a cross platform tool for managing native libraries and command-line utilities (e.g. git, wget, graphviz, boost, gcc, nodejs, cairo, etc.). For this use-case, start with [Miniconda](https://conda.io/miniconda.html) (~60MB) and tell the installer to add itself to your system `PATH`. Then run `conda install plotly-orca==1.2.1` and the orca executable will be available system wide.
5454

5555
##### npm + pip
5656
You can use the [npm](https://www.npmjs.com/get-npm) package manager to install `orca` (and its `electron` dependency), and then use pip to install `psutil`:

0 commit comments

Comments
 (0)