Table of Contents
Install Anaconda
Note: It’s not good practice to share environments with other users. Make sure make a backup of your startup file and that you launch a new terminal after the installation. Example below is for bash.
Code Block |
---|
cp -p ~/.profile ~/.profile.orig |
...
Instead of uninstalling anaconda, you can activate and deactivate Anaconda when needed.NOTE: The commands below only works on Conda 4.6 and newer.
Permanently
The following command will stop Anaconda from launching the base environment upon launching terminal and when opening new terminal windows.
...
The following commands will temporarily activate and deactivate Anaconda in a single terminal window. Opening a new terminal window will open in anaconda's base environment.
NOTE: The commands below only works on Conda 4.6 and newer.
Activating Anaconda
Code Block |
---|
conda activate |
...