Django2.2安装
https://media.djangoproject.com/releases/2.2/Django-2.2.tar.gz
解压
tar -zvxf Django-2.2.tar.gz -C /home/pythonSpace/
安装
sudo python setup.py install
测试
$ python
Python 3.6.7 (default, Oct 22 2018, 11:32:17)
[GCC 8.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> django.get_version()
'2.2'
>>> django.VERSION
(2, 2, 0, 'final', 0)