Buenas gente, instale Anaconda en mi ubuntu 18, tneog una hcarla y necesitaba instalarlo.
el tema es que ahora todas mis terminales se inicia de manera automatica dnetro de anaocnda
oea
mi prompt dice
(base) usuario@compu (https://underc0de.org/foro/index.php?action=profile;u=101590) $
si hago conda eactivate se desactiva, peor si inicio otro terminal vuelve a iniciarlo en conda..
como cambio esto?
en el archivo .bashrc del BIN de conda no me aparece dicha opcion, si no entnedi mal solo le podria cmabiar el interpete a conda desde ahi..
m no se que hacer..
You are not allowed to view links.
You are not allowed to view links.
Register or Login or You are not allowed to view links.
Register or Login
Buenas gente, instale Anaconda en mi ubuntu 18, tneog una hcarla y necesitaba instalarlo.
el tema es que ahora todas mis terminales se inicia de manera automatica dnetro de anaocnda
oea
mi prompt dice
(base) usuario@compu (https://underc0de.org/foro/index.php?action=profile;u=101590) $
si hago conda eactivate se desactiva, peor si inicio otro terminal vuelve a iniciarlo en conda..
como cambio esto?
en el archivo .bashrc del BIN de conda no me aparece dicha opcion, si no entnedi mal solo le podria cmabiar el interpete a conda desde ahi..
m no se que hacer..
bueno encontre la solucion
conda config --set auto_activate_base falseaca esta la explicaci[on de donde esta el archivo y la variable
aque la soluci[on de este https://stackoverflow.com/questions/54429210/how-do-i-prevent-conda-from-activating-the-base-environment-by-default (https://stackoverflow.com/questions/54429210/how-do-i-prevent-conda-from-activating-the-base-environment-by-default)
"""
Citar
I have conda 4.6 with a similar block of code that was added by conda. In my case, there's a conda configuration setting to disable the automatic base activation:
conda config --set auto_activate_base false
The first time you run it, it'll create a ./condarc in your home directory with that setting to override the default.
This wouldn't de-clutter your .bash_profile but it's a cleaner solution without manual editing that section that conda manages.
"""