Skip to content
This repository has been archived by the owner on Oct 6, 2018. It is now read-only.

Commit

Permalink
Docs: Update download page with conda instrustrctions
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Lange committed Jul 26, 2017
1 parent ed1bd0b commit 5b7102f
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions docs/download.rst
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

0 comments on commit 5b7102f

Please sign in to comment.