I would like to set a default Conda environment for my (bash) shell as mentioned in this question and am trying to do this by appending the following to the end of my .bashrc
(which I understand executes on opening each new terminal - please correct me if not).
conda activate myenv
I see the following on login:
(myenv) $ source /home/anil/miniconda3/bin/activate main
(main) $
This indicates that my environment was activated successfully but another script is being pasted into and run after the terminal is opened. Which conda file or artefact is responsible for this behaviour and how can I disable it, or modify it to set my preferred default shell?