
How to install Miniconda
This guide will show you how to install the latest version of Miniconda. Miniconda is a lightweight version of Anaconda: a virtual environment manager for Python.
Download Install Script
Linux
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.shMac
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O ~/miniconda.shInstall Minconda
sh ~/miniconda.sh -b -f -p $HOME/.miniconda
rm ~/miniconda.shSetting up your shell
If you don't want the conda base environment (you may not want this because as of now there are conflicts with later versions of Python and npm)
conda config --set auto_activate_base falseThe first time you run it, it'll create a ./condarc in your home directory with that setting to override the default.
Now you can initialize your shell with the following command:
conda init $SHELLNow close your terminal and open a new one and your conda environment should be fully configured.