1
I was using python with anaconda in osx 10.8 and Spyder crashed. When I tried to reboot, the launcher showed Spyder as not installed. I imagined that the anaconda might have had some problem and restarted the computer, but the problem continued.
Trying to find the source, I noticed that the standard python version had changed:
$ python --version
Python 3.4.1 :: Continuum Analytics, Inc.
I tried to change it back using defaults write
, redoing the link with ln -sf
and creating a alias python=python2.7
, nothing helped.
So I tried to use the Conda to remove python3, but conda remove python3
does not work. Using the Agreement to fetch installed packages returns this:
$ conda search python
Fetching package metadata: ..
(...)
python 1.0.1 0 defaults
(...)
. 2.7.5 2 defaults
. 2.7.5 3 defaults
(...)
* 3.4.1 0 defaults
I tried to check the Continuum documentation, but they recommend leaving 2.7 by default and creating Anaconda environments to use different versions, which also doesn’t help me.
Does anyone have any idea how to change the pattern back to version 2.7?
(System specifications: anaconda 1.7.0, osx 10.8.5, Conda 3.5.2)