Anaconda is Bloated - Set up a lean, robust data science environment

These instructions are based off of the above tutorial

Download Miniconda:

Anaconda is bloated, just use the command-line to manage all of your environments

Miniconda - Conda documentation

conda config --set channel_priority strict
conda install <package-name>

Don't set Anaconda to PATH you should just use the Anaconda Prompt Application:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/6329edef-4a62-4b49-ae73-21a69a76367c/Untitled.png

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f12446f6-9a9d-4de1-b920-33718b738df4/Untitled.png

Update Anaconda:

conda update conda

Create a minimal_ds Environment:

conda create --name minimal_ds

Activate minimal_ds Environment:

conda activate minimal_ds

Add conda-forge As a Channel:

conda config --add channels conda-forge
conda config --set channel_priority strict
conda install <package-name>

Add basic DS Packages: