41

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 Answers9

40

It looks like the accepted answers might be out of date. From the docs:

If your shell is Bash or a Bourne variant, enable conda for the current user with

$ echo ". /home/<user>/miniconda3/etc/profile.d/conda.sh" >> ~/.bashrc

or, for all users, enable conda with

$ sudo ln -s /home/<user>/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh

The 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 activate

in your terminal, or to put the base environment on PATH permanently, run

$ echo "conda activate" >> ~/.bashrc

Previous 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! ^^^

Quar
  • 148
  • 3
jerpint
  • 516
  • 6
  • 4
22

For bash use:

$ cd YOUR_PATH_ANACONDA/bin
$ ./conda init bash

That will automatically edit your .bashrc.

Reload:

$ source ~/.bashrc

Test (install Spyder):

$ conda install -c anaconda spyder

Run Spyder

$ spyder
alditis
  • 361
8

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 :)

runlevel0
  • 372
5

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.

Ogre55
  • 584
4

Use:

conda init bash

That will automatically edit your .bashrc.

Eliah Kagan
  • 119,640
1

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=&quot;~/.bashrc&quot;
  PROFILE_FILE=&quot;~/.profile&quot;

  if [ ! -f &quot;$PROFILE_FILE&quot; ] 
  then
        conda init
        cp -rf &quot;$BASHRC_FILE&quot; &quot;$PROFILE_FILE&quot;
  fi
  ls -ll &quot;$PROFILE_FILE&quot;

  echo &quot;conda setup done&quot; 

}

conda_setup || echo "some issue in conda setup"

ThunderBird
  • 1,963
  • 13
  • 22
  • 31
0

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_name

now save the .bashrc file (Ctrl+Shift+o) press enter.

slava
  • 4,085
Cat
  • 111
0

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>
ashley
  • 101
  • 2
0

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.