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/updating.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/updating.rst')
-rw-r--r-- | source/updating.rst | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/source/updating.rst b/source/updating.rst index f69d7d5..eedebfd 100644 --- a/source/updating.rst +++ b/source/updating.rst @@ -9,8 +9,8 @@ Updating AstroConda There are few simple ways to update packages obtained from AstroConda: -Updating the Release --------------------- +Updating +-------- .. code-block:: sh @@ -42,6 +42,18 @@ Updating Packages Individually If you are interested in receiving updates for a particular package, then this method is for you. Be aware that packages may depend on other packages, so the total list of package updates returned by this command will vary. +General Maintenance +=================== + +.. code-block:: sh + + $ source deactivate + $ conda update --all + +Keeping AstroConda up to date is important, but not nearly as important as keeping your 'root' (i.e. the base installation) updated as well. ``conda`` is like any other software project and it requires periodic refreshing to stay current with the latest changes. Failing to do this can (over time) cause side-effects such as, the inability to upgrade, install, remove, or search for packages. + +However, updating extremely old releases of ``conda`` to the latest version have been known to break Miniconda due to a variety of API changes in the code. If this happens to you, reinstalling Miniconda and regenerating your AstroConda environment is the fastest way to resolve the problem. Refer to the `FAQ <faq.html#how-do-i-reinstall-miniconda>`_ for more details. + Downgrading Packages ==================== |