From 7408fc3ff32f301a97a8cfb43d317d05cb1043ee Mon Sep 17 00:00:00 2001 From: wblumberg Date: Tue, 25 Feb 2020 10:53:38 -0500 Subject: [PATCH] Updated install to recommend using conda envrionments --- docs/source/install.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/source/install.rst b/docs/source/install.rst index f21b7f29..edc39c2a 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -41,6 +41,14 @@ The Anaconda Python Distribution can be downloaded here: https://store.continuum We recommend you download the *Python 3.6 or 3.7* version of the Anaconda Python distribution. SHARPpy is primarily tested using this distribution. +To avoid compatability issues with other Python packages, we strongly recommend install SHARPpy into its own Anaconda environment: + +.. prompt:: bash + conda create -n sharppy-env -c sharppy -c conda-forge sharppy + conda activate sharppy-env + +Otherwise, you can try to install SHARPpy directly into your current Anaconda environment: + .. prompt:: bash conda config --add channels conda-forge