1) venv at the same level:
create new project on GH
git clone https://github.com/user/myproject
python -m venv myproject
cd myproject
(activate venv)
____
2) clone first, venv in subdirectory:
python -m venv venv
___
3) something completely different? if so, what?
1) venv at the same level:
create new project on GH
git clone https://github.com/user/myproject
python -m venv myproject
cd myproject
(activate venv)
____
2) clone first, venv in subdirectory:
create new project on GH
git clone https://github.com/user/myproject
cd myproject
python -m venv venv
(activate venv)
___
3) something completely different? if so, what?