In my django project\'s settings.py file, I have this line :
settings.py
TIME_ZONE = \'UTC\'
But I want my app to run in UTC+2 timezone, s
download latest pytz file (pytz-2019.3.tar.gz) from:
https://pypi.org/simple/pytz/
copy and extract it to site_packages directory on yor project
site_packages
in cmd go to the extracted folder and run:
python setup.py install
TIME_ZONE = 'Etc/GMT+2' or country name
TIME_ZONE = 'Etc/GMT+2'