Installing Python
Installing Anaconda
Section titled “Installing Anaconda”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
Installing Visual Studio Code
Section titled “Installing Visual Studio Code”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:~$
Set up a conda environment
Section titled “Set up a conda environment”-
In vs code terminal create a conda environment
Terminal window conda create -n camp2025 -
Activate the environment
Terminal window conda activate camp2025The prompt should change to:
Terminal window (camp2025) user@pc:~$ -
Install the scientific packages
Terminal window conda install numpy scipy matplotlib pandas seaborn