When I Install a venv and install Django in it for example \"DjangoUpgrade\" then I am missing at this path the templates folder
:~/.venvs/DjangoUpgrade/loca
To solve this issue you should use "--no-binary" while installing django.
pip install --no-binary django -r requirements.txt
or
pip install --no-binary django django==1.4.21
Remember to upgrade your PIP installation to have the "--no-binary" option.
You can get further information in this link: https://github.com/pypa/pip/issues/2823