diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-01-24 13:36:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-24 13:36:43 -0500 |
commit | 64af73fbc890b6a2217a031ecdf7c1d824cf99eb (patch) | |
tree | 1e5485b0398d439dcb7afd029ad7455bc611047c /source/faq.rst | |
parent | f0fe2eacacf796d12526be44c044b8870d6728c0 (diff) | |
download | astroconda-64af73fbc890b6a2217a031ecdf7c1d824cf99eb.tar.gz |
Clarity continued (#40)
* Add "How do I reinstall Miniconda" section
* Add "General Maintenance" section
Diffstat (limited to 'source/faq.rst')
-rw-r--r-- | source/faq.rst | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/source/faq.rst b/source/faq.rst index 2f2faf4..c6ef553 100644 --- a/source/faq.rst +++ b/source/faq.rst @@ -61,6 +61,27 @@ Please reinstall Miniconda (or Anaconda) from scratch. AstroConda uses ``source To clarify, installing AstroConda packages directly into the 'root' may cause Miniconda (or Anaconda) itself to be come unstable. In addition to this, removing packages from this environment is tedious and will likely break your Anaconda installation if you are not careful. *Reinstalling from scratch is the safest option.* +How do I reinstall Miniconda? +============================= + +This assumes Miniconda3 has been installed to the default location (``/home/username/miniconda3``). We will refer to your home directory as ``~/`` from here on. + +.. code-block:: sh + + # Make a backup of your existing installation if desired: + $ tar cfz /safe/place/miniconda3_OLD.tar.gz ~/miniconda3 + + # Remove miniconda3 + $ rm -rf ~/miniconda3 + + # Download the Miniconda3 installer for your platform from: http://conda.pydata.org/miniconda.html + + # Execute the installer (where PLATFORM is one of Linux or MacOSX) + $ bash /path/to/Miniconda3-latest-PLATFORM-x86_64.sh + +The installer may offer to automatically edit ``~/.bash_profile`` and prepend ``~/miniconda3/bin`` to your ``PATH``. If you already have this entry in your ``PATH``, simply reponse with 'no'. Responding with 'yes' will add another entry even if it exists resuling in a ``PATH`` that looks much like: ``~/miniconda3/bin:~/miniconda3/bin:[...]``. + + Why am I being prompted by NumPy/SciPy with a MKL 30-day trial warning? ======================================================================= |