The complete documentation can be found here https://docs.anaconda.com/anaconda/install/ . There's a detailed step by step outline there, if you need any help you can drop me an email. To install anaconda: - docs: https://docs.anaconda.com/anaconda/install/ Once anaconda is installed, then the following is done on the terminal. To create the virtual environment $ conda create -n calibration python=3.10 To activate the newly created environment $ conda activate calibration To install jupyter notebook $ pip install notebook To run the notebook $ jupyter notebook Because this is a new install, there are other packages required for my code to run like numpy etc. to install them $ pip install numpy, matplotlib, scikit-learn I can't remember all the other packages that need to get installed off the top of my head, but I'll try a new installation later and let you know if there's anything else that needs to get installed.