ImportError at / No module named 'django.urls'

0

I'm totally new to this in Python in web pages, I consulted and well, I decided to use Django as a framework, I followed a tutorial and I have come to the part of uploading it to the web, the page is called pythonanywhere , then when I try to visualize the web I get the error written in the title, until the little I know can not be an error with respect to a missing file, I followed the tutorial to the letter and everything I went well here, I'll leave the link where you should see the page link so you can see the errors in more detail.

This is the urls.py file:

from django.contrib import admin
from django.urls import path

urlpatterns = [
    path('admin/', admin.site.urls),
]

I must say that I have seen similar questions in the forum both Spanish and English but none of them solves my problem since there are things that are different.

    
asked by Jalkhov 02.07.2018 в 01:01
source

0 answers