Issue
I'm looking for some sort of naming scheme for my virtual environments. How do you usually name them? Is there naming convention for python virtual environments?
Solution
If you are storing your environment inside the project folder some common names are env
, venv
, .env
, .venv
, but besides that, I don't think there are any common conventions.
Answered By - Tzane