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 + `)

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

    conda create -n camp2026
  2. Activate the environment

    conda activate camp2026

    The prompt should change to:

    (camp2026) user@pc:~$
  3. Install the scientific packages

    conda install numpy scipy matplotlib pandas seaborn