This repository has been archived by the owner on Oct 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs: Update download page with conda instrustrctions
- Loading branch information
Michael Lange
committed
Jul 26, 2017
1 parent
ed1bd0b
commit 5b7102f
Showing
1 changed file
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
Download Devito | ||
=============== | ||
|
||
To install Devito from Github run the following commands from your terminal: | ||
The recommended way to install Devito uses the Conda package manager | ||
for installation of the necessary software dependencies. Please | ||
install either Anaconda_ or Miniconda_ using the instructions | ||
provided at the download links. | ||
|
||
.. _Anaconda: https://www.continuum.io/downloads | ||
|
||
.. _Miniconda: https://conda.io/miniconda.html | ||
|
||
To install the editable development version Devito, including examples, | ||
tests and tutorial notebooks, please run the following commands: | ||
|
||
.. code-block:: shell | ||
git clone https://github.com/opesci/devito.git | ||
cd devito && pip install --user -r requirements.txt | ||
cd devito | ||
conda env create -f environment.yml | ||
source activate devito | ||
pip install -e . | ||
If you don't want to use the Conda environment manager, Devito can | ||
also be installed directly from GitHub via pip: | ||
|
||
.. code-block:: shell | ||
pip install --user git+https://github.com/opesci/devito.git |