Create python virtualenv in a dir for python3
$ cd codefolder $ virtualenv -p python3 .
Exit python virtualevn
$ deactivate
Shorthand to create virtualenv and folder
$ virtualenv yourvenv -p python3
Install django
$ pip install django==2.2