Setting Up Conda Environment
Anaconda is Bloated - Set up a lean, robust data science environment
In this tutorial, I will describe a process for setting up a lean and robust Python
data science environment on your system.
https://www.dunderdata.com/blog/anaconda-is-bloated-set-up-a-lean-robus
t-data-science-environment-with-miniconda-and-conda-forge
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
Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda,
Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few
others. Use the to install 720+ additional conda packages from the Anaconda repository.
https://docs.conda.io/en/latest/miniconda.html
conda config --set channel_priority strict
conda install <package-name>
Don't set Anaconda to PATH you should just
use the Anaconda Prompt Application:
Setting Up Conda Environment 1
Anaconda is Bloated - Set up a lean, robust data science environment
In this tutorial, I will describe a process for setting up a lean and robust Python
data science environment on your system.
https://www.dunderdata.com/blog/anaconda-is-bloated-set-up-a-lean-robus
t-data-science-environment-with-miniconda-and-conda-forge
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
Miniconda is a free minimal installer for conda. It is a small, bootstrap version of Anaconda that includes only conda,
Python, the packages they depend on, and a small number of other useful packages, including pip, zlib and a few
others. Use the to install 720+ additional conda packages from the Anaconda repository.
https://docs.conda.io/en/latest/miniconda.html
conda config --set channel_priority strict
conda install <package-name>
Don't set Anaconda to PATH you should just
use the Anaconda Prompt Application:
Setting Up Conda Environment 1