I'm having problems with importing stuff from Django.
I'm entirely new to python and I'm following a tutorial where I'm taught how to make my first Django project (I'm using Pycharm by the way).
The problem I'm encountering is when I try to import something from Django it says Unresolved reference 'django'
.
from django.http import HttpResponse
from django.shortcuts import render
This case only shows the red squiggly line under the two HttpResponse
, and render
.
Any help would be appreciated, I have tried searching on google, but I couldn't find what I'm looking for.