Course Content Git Repository
- Michael Fudge
π Course website: https://mafudge.github.io/ist356
- Syllabus:
syllabus.md - Course Setup Information:
0-introfolder - Course topics in each numbered folder:
1-python, 2-ui, 3-dataetc...
- As a public repository, you have permissions to pull code and get updates
- You do not have permissions to update this code on Github.
If your prof updated the code, here's how you get it in VS Code:
- Open your Terminal in VS Code: menu => Terminal => New Terminal
- In the terminal, enter the command:
git fetch --allto download the latest updates. - Next in the terminal, enter the command:
git reset --hard origin/mainto merge the changes into your local repository and force your working directory to match the update. - Download the pip dependencies:
pip3 install -r requirements.txt
The packages necessary to run the code here are found in requirements.txt install using pip as follows:
- From VS Code, open a terminal: menu => Terminal => New Terminal
- In the terminal, enter
pip3 install -r requirements.txt