summaryrefslogtreecommitdiff
path: root/source/faq.rst
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-05-06 16:54:17 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-05-06 16:54:17 -0400
commitd5eaf1650f1404ae284fc56c71882ef713019ac8 (patch)
treebc44ecf2058f47e9bb5ab0b933e054a88e05b3b5 /source/faq.rst
parent2a1db07f0a3ae7d895c42f7bdd2d2a82d111f841 (diff)
downloadastroconda-d5eaf1650f1404ae284fc56c71882ef713019ac8.tar.gz
Update FAQ: MKL 30-day trial fix
Diffstat (limited to 'source/faq.rst')
-rw-r--r--source/faq.rst31
1 files changed, 31 insertions, 0 deletions
diff --git a/source/faq.rst b/source/faq.rst
index 827f0d9..c516df2 100644
--- a/source/faq.rst
+++ b/source/faq.rst
@@ -2,6 +2,7 @@
F.A.Q.
######
+
After "``conda create ...``" why does "``source activate astroconda``" fail?
============================================================================
@@ -21,6 +22,36 @@ To clarify, it is impossible to execute ``source activate root``. Installing Ast
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.*
+Why am I being prompted by NumPy/SciPy with a MKL 30-day trial warning?
+=======================================================================
+
+The ``root`` environment of your Anaconda installation is severely outdated (``<=2.4.0``) and suffers from a crippling bug
+introduced by the ``conda-3.19.x`` package.
+
+It is possible to verify the version of Anaconda you have by running:
+
+.. code-block:: sh
+
+ $ conda info anaconda
+
+The only solution is to update your Anaconda installation to the latest release:
+
+.. code-block:: sh
+
+ $ source deactivate
+ $ conda update conda
+ $ conda update anaconda
+
+Next, update the ``astroconda`` environment to realign your packages with the ``root`` environment:
+
+.. code-block:: sh
+
+ $ conda update -n astroconda --all
+ $ source activate astroconda
+
+After doing this, the ``mkl`` 30-day trial warning will not be displayed while importing ``numpy``, ``scipy``, or any
+other package requiring ``mkl``.
+
How does AstroConda differ from Ureka?
======================================