From 171a47416edf3e60bd0e98853a7d7f1567c5a091 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 13 Nov 2020 14:31:29 -0600 Subject: [PATCH] Switch install docs to miniforge --- doc/misc.rst | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/doc/misc.rst b/doc/misc.rst index 4c8c9867f..e8bcefc65 100644 --- a/doc/misc.rst +++ b/doc/misc.rst @@ -49,21 +49,18 @@ MacOS support computers: Everywhere else, just making sure you have the ``g++`` package should be enough. -#. Install `miniconda `_. - (Both Python 2 and 3 should work. In the absence of other constraints, prefer Python 3.) +#. Install `miniforge `_. -#. ``export CONDA=/WHERE/YOU/INSTALLED/miniconda3`` +#. ``export CONDA=/WHERE/YOU/INSTALLED/miniforge3`` If you accepted the default location, this should work: - ``export CONDA=$HOME/miniconda3`` + ``export CONDA=$HOME/miniforge3`` #. ``$CONDA/bin/conda create -n dev`` #. ``source $CONDA/bin/activate dev`` -#. ``conda config --add channels conda-forge`` - #. ``conda install git pip pocl islpy pyopencl`` (Linux) or @@ -76,7 +73,7 @@ MacOS support computers: Next time you want to use :mod:`loopy`, just run the following command:: - source /WHERE/YOU/INSTALLED/miniconda3/bin/activate dev + source /WHERE/YOU/INSTALLED/miniforge3/bin/activate dev You may also like to add this to a startup file (like :file:`$HOME/.bashrc`) or create an alias for it. -- GitLab