📝 Josh's Notes

Python Virtual Environments

  1. Create a virtual environment:
python -m venv /path/to/venv
  1. Activate the environment (assuming the path you used in previous command is ./venv):
source ./venv/bin/activate

#python