Could not translate host name "jdbc:postgresql" in Django and Python
I've successfully created a Django project in Pycharm to talk to the default Sqlite3. But now I'd like to switch to Postgress. I have the following in settings.py DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': 'postgres', 'USER': 'postgres', 'PASSWORD':…