Commit 8041f68c authored by Kelvin Rodriguez's avatar Kelvin Rodriguez Committed by GitHub
Browse files

Merge pull request #248 from michaelaye/patch-2

improving conda commands
parents 8180c99c 1edba122
Loading
Loading
Loading
Loading
+9 −5
Original line number Diff line number Diff line
@@ -38,9 +38,13 @@ We suggest using Anaconda Python to install Autocnet within a virtual environmen
   * ``conda create -n <your_environment_name> python=3 && source activate <your_environment_name>``
   
   Note, that you might want to specify either ``python=3.5`` or ``python=3.6``, depending on your requirements. Both are currently supported by autocnet.
#. Bring up a command line and add three channels to your conda config (``~/condarc``):
#. Make the newly created environment the active one:

   * ``conda config --add channels conda-forge``
   * ``conda config --add channels menpo``
   * ``conda config --add channels usgs-astrogeology``
#. Finally, install autocnet: ``conda install -c usgs-astrogeology autocnet``
   * ``conda activate <your_environment_name>`` (or ``source activate`` on an older conda system)
   
#. Bring up a command line and add three channels to your conda environment-specific config file:
   
   * ``conda config --env --add channels conda-forge``
   * ``conda config --env --add channels menpo``
   * ``conda config --env --add channels usgs-astrogeology``
#. Finally, install autocnet: ``conda install autocnet``