Conda (package manager): Difference between revisions

No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Install==
==Install==
===Add Anaconda to PATH (Windows)===
Install either Anaconda or Miniconda
If you didn't already add it to path on installation, add the following:
 
===Miniconda===
Download Miniconda from [https://docs.conda.io/en/latest/miniconda.html https://docs.conda.io/en/latest/miniconda.html].
 
===Anaconda===
Download Anaconda from [https://www.anaconda.com/products/individual https://www.anaconda.com/products/individual].
 
===Add Anaconda to PATH===
If you didn't already add it to path on installation, run the following:
<pre>
<pre>
%USERPROFILE%\Anaconda3\Scripts
echo ". $HOME/Anaconda3/etc/profile.d/conda.sh" >> ~/.bashrc
</pre>
 
===Do not activate base===
By default, conda will always activate base. 
To disable this, run the following:
<pre>
conda config --set auto_activate_base false
</pre>
</pre>