I use Conda for package management in Python. I have a basic environment which I use almost all of the time, and I want it to be loaded by default when I open a terminal. How do I set up my .bashrc to load the environment?
So far, I tried source activate myenv, but my understanding is that I need to provide an actual path within the .bashrc file. I then tried source ~/anaconda3/envs/myenv/bin/activate. Although this doesn't throw an error, it also doesn't activate the environment. I'm running Ubuntu 16.04.
9 Answers
It looks like the accepted answers might be out of date. From the docs:
2If your shell is Bash or a Bourne variant, enable conda for the current user with
$ echo ". /home/<user>/miniconda3/etc/profile.d/conda.sh" >> ~/.bashrcor, for all users, enable conda with
$ sudo ln -s /home/<user>/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.shThe options above will permanently enable the 'conda' command, but they do NOT put conda's base (root) environment on PATH. To do so, run
$ conda activatein your terminal, or to put the base environment on PATH permanently, run
$ echo "conda activate" >> ~/.bashrcPrevious to conda 4.4, the recommended way to activate conda was to modify PATH in your ~/.bashrc file. You should manually remove the line that looks like
export PATH="/home/<user>/miniconda3/bin:$PATH"^^^ The above line should NO LONGER be in your ~/.bashrc file! ^^^
For bash use:
$ cd YOUR_PATH_ANACONDA/bin
$ ./conda init bashThat will automatically edit your .bashrc.
Reload:
$ source ~/.bashrcTest (install Spyder):
$ conda install -c anaconda spyderRun Spyder
$ spyder During the Anaconda install there should be an entry added the .bashrc file like this
export PATH="/home/<user>/anaconda3/bin:$PATH"if it is not there, verify the install by running which conda, and update .bashrc with the path up to bin.
This points to the 'conda' executable, and sets up the path to handle conda activate.
Add this line after the export command:
source activate <your_environment>from there you can source ~/.bashrc to load the environment to the current shell.
Correct Fix
(works for versions >= 4.6)
find . -type f -name 'conda'check where the conda binary is and thene cd to it or just give the complete path and run
conda config --set auto_activate_base true
To deactivate just do the same but with false. Obviously:
conda config --set auto_activate_base false
Quick & Dirty Fix #1
Paste the following into your .bashrc, replace with the obvious and source your .bashrc (source .bashrc). Should work for Miniconda3 version >= 4.6
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/<YOUR_USER>/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then eval "$__conda_setup"
else if [ -f "/home/<YOUR_USER>/miniconda3/etc/profile.d/conda.sh" ]; then . "/home/<YOUR_USER>/miniconda3/etc/profile.d/conda.sh" else export PATH="/home/<YOUR_USER>/miniconda3/bin:$PATH" fi
fi
unset __conda_setup
# <<< conda initialize <<<This is a cut and paste from my own .bashrc, you can remove the comments but I find them handy as delimiters.
Quick & Dirty Fix #2
Remove the whole thing with your favourite removal command (rm -rf ~/miniconda3), run the install script again and pay attention to the prompt as it will aks you if you want to autostart it.
Whatever rocks your boat :)
Use:
conda init bashThat will automatically edit your .bashrc.
As commented by @oya163, if .bashrc doesn't work then try copying ~/.bashrc to ~/.profile, it resolved my issue.
Also, run conda init, it will setup necessary steps for conda activate and setup commands are added into ~/.bashrc file by conda init. Later, one can copy this whole ~/.bashrc to ~/.profile or ~/.bash_profile
I use the below scripts to setup above mentioned things
#!/bin/bash
conda_setup() { echo "setting up conda..." # setting up .profile BASHRC_FILE="~/.bashrc" PROFILE_FILE="~/.profile" if [ ! -f "$PROFILE_FILE" ] then conda init cp -rf "$BASHRC_FILE" "$PROFILE_FILE" fi ls -ll "$PROFILE_FILE" echo "conda setup done"
}
conda_setup || echo "some issue in conda setup" If you want a conda environment to be activated by default when you launch a new bash terminal, you can add the following line to your ~/.bashrc file:
export PATH=<PATH_TO_YOUR_CONDA_ENVIRONMENT/bin>:$PATH
You should replace <PATH_TO_YOUR_CONDA_ENVIRONMENT/bin> in the above line with the full path to your conda environment.
In your case, you can add the following line to your ~/.bashrc file:
export PATH=~/anaconda3/envs/myenv/bin:$PATH
Basically we are adding the bin directory of your conda environment as the first entry in your PATH which is essentially what the activate convenience script will do. After this, When you open a new bash terminal, the conda environment will be "activated"/"enabled" by default.
Note that you may not see the (myenv) prefix to your bash prompt like you would if you did source activate myenv. If you want the prefix to your prompt to show up as well, add the following line to your ~/.bashrc file:
export PS1="(myenv)"$PS1
Where (myenv) is any custom name you can give that will show up as the prefix to the bash prompt.
This may be somewhere above (but I got it wrong first off). Its important that in your bashrc file you first export your conda path. So the path to conda (or miniconda etc) will come above the conda activate <env> line. The format is like so:
export <path to conda bin>
<any other conda initializations>
conda activate <env> To activate conda environment simply put this at the end of your .bashrc file
to open .bashrc open terminal, go to home directory.
Run/type nano .bashrc, at the prompt put the following at the end of the file:
conda activate my_environment_namenow save the .bashrc file (Ctrl+Shift+o) press enter.
4