How to get set up for COMP1010
This video explains the process for getting set up, and walks you through the first lab exercise.
If you run into errors at any point, try downloading and working through the first lab exercise "get set", as it contains a tool that can help identify issues and suggest fixes.
Please install all of the following software
From VS Code, open a terminal. From the menu bar, run "Terminal > New terminal".
On MacOS, run the following command
pip install -r <(curl https://gist.githubusercontent.com/MiguelGuthridge/155a192d0eec2509460d21f2f75ea9b4/raw/comp1010-requirements.txt)
On Windows, run the following command
curl.exe --ssl-no-revoke https://gist.githubusercontent.com/MiguelGuthridge/155a192d0eec2509460d21f2f75ea9b4/raw/comp1010-requirements.txt > requirements.txt; pip install -r requirements.txt; rm requirements.txt
You can make sure your setup by following the instructions in the "Get set" lab exercise.
Resource created Saturday 09 September 2023, 01:38:55 PM, last modified Tuesday 07 November 2023, 07:33:53 PM.