Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
best practices with local python development is to create a virtual environment. The most common are either .venv or venv folders in the root of the repo. Created via: `python -m venv .venv` or `python -m venv venv` I'm adding these folders to the .gitignore to avoid them being accidentally source controlled Signed-off-by: jmeridth <[email protected]>
- Loading branch information