Python Commands & Tips
A list of frequently used Python commands and tips
Initial Set up
Use Rye for project management tool
curl -sSf https://rye.astral.sh/get | bash
rye init my-project
cd my-project
rye pin 3.12 # To pin python version
rye add "flash>=2.0" # To add dependency to project"
Still work in progress.
Last modified: 18 November 2024