If windows:
- Open Git bash in the place you work
- git clone https://github.com/D3ft4cKeR/python-template.git + "project.name"
- cd "project.name"
- rm -rf .git
- python -m venv venv
- source venv/Scripts/activate
- pip install -r requirements.txt
- code .
If Ubuntu:
- Open Terminal in the place you work
- git clone https://github.com/D3ft4cKeR/python-template.git + "project.name"
- cd "project.name"
- rm -rf .git
- python3 -m venv venv
- source venv/bin/activate
- pip install -r requirements.txt
- code .