Anaconda: disable tooltip

When using anaconda (install for python), when I switch to virtual env with this:

source activate my_env

It changes my invitation and adds (my_env) at the beginning of my PS1.

I tried adding export VIRTUAL_ENV_DISABLE_PROMPT=1to my bashrc, but that didn't help.

Any idea?

+27
source share
3 answers

Run this on the terminal:

$ conda config --set changeps1 False

http://conda.pydata.org/docs/config.html#change-command-prompt-changeps1

+35
source
+16
source

, : env . :

conda config --set auto_activate_base False

: , conda init.

+1

All Articles