'unable to find timezone in django
What I am doing.
I am working on a very basic django project.
what is my problem.
When I am loading my webpage (locally) it is showing following error on webpage.
A server error occurred. Please contact the administrator
and error that I saw on terminal is
zoneinfo._common.ZoneInfoNotFoundError: 'No time zone found with key utc'
Solution 1:[1]
Running the command below in the terminal should fix the issue:
pip3 install tzdata
or
pip install tzdata
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Elijah Baraza |
