Good to know
⭐️ Its common practice to create a Virtual Environment for your python project. It helps you to isolate your project and python from the system python wich is used for macOS.
Create & Delete
Create venv
python3 -m venv .venvDelete venv
rm -rf .venvActivate & Deactivate
Activate
source .venv/bin/activateShould now display something like
(.venv) alain@nooneeCheck if successfully activated
which pythonDeactivate
deactivate