Skip to content

Installing Python

Anaconda is a python distribution that includes most of the neccessary python libraries we will be using in this course. Installing anaconda is straight forward. Visit the following link to download and install the version that matches your operating system.

A step by step instruction for each operating system can be found here

We highly recommend you install Visual Studio Code editor for all python related projects.

Once installed, vs code should automatically detect and activate anaconda. To confirm this you can check for (base) prefaced to the prompt in the inbuilt terminal ( ctrl + `)

Terminal window
(base) user@pc:~$
  1. In vs code terminal create a conda environment

    Terminal window
    conda create -n camp2025
  2. Activate the environment

    Terminal window
    conda activate camp2025

    The prompt should change to:

    Terminal window
    (camp2025) user@pc:~$
  3. Install the scientific packages

    Terminal window
    conda install numpy scipy matplotlib pandas seaborn