Unable to run anaconda-navigator out of conda envirnment (base)
Solution 1:
So no one answered and I needed to solve it so went through the websites and found the solution which I share for the future users' problem.
The thing to do is to modify two things in .condarc
file, which usually is situated saved in home directory.
First to set the automatic activation of the base to true
, to have the environment activated in the terminal, and change changeps1
to False
in order to prevent to show (base)
in the beginning:
$ conda config --set auto_activate_base True
$ conda config --set changeps1 False
They are all saved in .condarc
file.