본문 바로가기

메타인지/TIL

TIL 09/08

ImportError: cannot import name 'url'

 

버전별로 차이

If you are using Django==1.11.0 then import should be as

from django.conf.urls import include

 

 

else if you are using Django==2.x, the import should be as,

from django.urls import include

 

UPDATE

Your code seems written in Django 2.x. So you have to update the django version and remove the line 16 from the code

 

출처: <https://stackoverflow.com/questions/51719381/importerror-cannot-import-name-include>

'메타인지 > TIL' 카테고리의 다른 글

TIL 09/10  (0) 2019.09.10
TIL 09/09  (0) 2019.09.09
TIL 09/07  (0) 2019.09.07
TIL 09/06  (0) 2019.09.06
TIL 09/05 프로젝트 기획을 명세하다  (0) 2019.09.05