Anaconda Distribution #
Anaconda is a distrubtion (package manager and installer) for Python (and R).
Anaconda simplifies the process of installing Python and setting up virtual environments (we’ll cover more on that in the course).
By installing Anaconda, you won’t need to install Python for this bootcamp as Python is installed as part of Anaconda.
To download Anaconda, go to https://www.anaconda.com/products/distribution and select “Download”.
If you are a MacOS user, follow the macOS graphical install instructions here.
If you are a Windows user, follow the windows install instructions here.
For windows users only:
- Please tick the Add Anaconda3 to my PATH environment variable. This will save us a step later on when configuring Anaconda in the bootcamp. If you forgot to tick this option, it’s no problems at all as we can manually configure this later on in the bootcamp.
To verify that you have installed Anaconda successfully, you can either:
- Go to your applications or programs and verify that “Anaconda Navigator” appears, or
- You can go to command prompt or terminal and type
conda --version
and you should seeconda 4.12.0
or similar (version numbers may change). If you get an error here, that is likely because Anaconda was not added to your PATH environment variable yet. We will configure this later in the bootcamp.