Appendix
An appendix containing useful commands for local setups.
Local execution
The following commands will be needed when implementing ideas from this course on your own machine. The course already has this setup implemented.
Activating the Python environment
Activate the virtual environment using the appropriate command for our operating system:
For Windows, use this:
C:\> venv\Scripts\activate
For Mac or Linux, use this:
$ source venv/bin/activate
Specify the Python version if you have multiple versions on your system. The ...