Mastering Python for Professional Programmers
- Sign up for Github.com
- Install "Git" from Git Download
- Make sure you have IDE. I suggest Visual studio Code
- Install Uv
4a) If in windows:Set-ExecutionPolicy RemoteSigned -Scope CurrentUser - Install Github CLI
- load your virtual enviroment:
uv venv - Load your dependancies:
uv sync - Follow the last line outputed (might be:
.venv\Scripts\activate) - Run your script (if it's "main.py") by running:
uv run main.py
- Fork the repo to your own github
- Clone your own repo
- uv venv
- Activate the VENV (follow the green line)
- uv sync
- Run the programs with
uv run index.pyoruv run streamlit run index.py