장고로 개발하다보면 무지하게 자주보는 에러입니다.
root:/root/home/mysite# python manage.py makemigrations
File "manage.py", line 17
) from exc
^
SyntaxError: invalid syntax
파이썬이 버전2와 버전3으로 따로 있는 것을 아실겁니다. 이때는 명시적으로 python을 python3로 바꿔주시면 됩니다.
python3 manage.py makemigrations
이렇게 하시면 실행됩니다.
알면서 자주보는 에러입니다.
'개발자' 카테고리의 다른 글
[AD센스] 애드센스를 사용하려면 사이트에서 발견된 문제를 해결해야 합니다 (0) | 2021.07.18 |
---|---|
[python] IndentationError: unindent does not match any outer indentation level 들여쓰기 불일치 오류 (0) | 2021.07.16 |
[python] URL 리다이렉션 솔루션 pyshorteners (0) | 2021.07.14 |
[django] filter 날자와 시간을 원하는데로 (Data, Time) (0) | 2021.07.11 |
구글 서치콘솔(Google Search Console) 등록하고 티스토리 연동하기 (0) | 2021.07.09 |