From 151816a2ab84892477ece51efd85ffb6037bf366 Mon Sep 17 00:00:00 2001 From: Jesse Mapel Date: Fri, 27 May 2022 12:49:18 -0700 Subject: [PATCH] Updating installation instructions for 7.0.0 (#4967) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We no longer have a Python 3.6 requirement 🎉 so it's gone. Also removed the 3.10 instructions as they don't work with the new un-pinned Python. --- README.md | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index e24d6c07d9..6516caa3e3 100644 --- a/README.md +++ b/README.md @@ -55,17 +55,11 @@ This installation guide is for ISIS users interested in installing ISIS (3.6.0)+ ```bash #Create a new conda environment to install ISIS in - conda create -n isis python=3.6 + conda create -n isis #Activate the environment - #Depending on your version of Anaconda use one of the following: - - #Anaconda 3.4 and up: conda activate isis - #Prior to Anaconda 3.4: - source activate isis - #Add the following channels to the environment conda config --env --add channels conda-forge conda config --env --add channels usgs-astrogeology @@ -88,13 +82,7 @@ This installation guide is for ISIS users interested in installing ISIS (3.6.0)+ 1. The environment is now ready to download ISIS and its dependencies: ```bash - conda install -c usgs-astrogeology isis=6.0.0 - ``` - - If you would like to work with ISIS version 3, rather than the latest ISIS, run instead: - - ```bash - conda install -c usgs-astrogeology isis=3.10.0 + conda install -c usgs-astrogeology isis=7.0.0 ``` 1. Finally, setup the environment variables: -- GitLab