I'm relatively new to the world of python, so I apologize if this is a stupid question.
I'm having some trouble discerning at what level I should be creating my virtual environment. Using a trivial example:
project
│ README.txt
│ setup.py
| venv ** should this go here **
│
└───package1Name
| | venv ** or here **
│ ...
└───package2Name
| | venv ** and here **
...