인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

hw's profile image
hw

asked

페이스북 클론 - full stack 웹 개발

accounts-model

type 'PosixPath' is not iterable 에러

Resolved

Written on

·

1.3K

0

python manage.py migrate 명령하니

TypeError: argument of type 'PosixPath' is not iterable

라고 뜨네요. 어디서 나온 'PosixPath' 인지 모르겠어요.

아래는 워크스페이스 주소인데 봐줄 수 있나요?

https://goor.me/sZ6Jn

 

PosixPathjavascriptpythonHTML/CSSdjangolinux클론코딩

Answer 1

0

hw님의 프로필 이미지
hw
Questioner

facebookclone/config/static/settings.py 의 82번째 라인 데이터베이스 설정에 기입된

'NAME': BASE_DIR / 'db.sqlite3' 가 문제 였네요.

'NAME': os.path.join(BASE_DIR, 'db.sqlite3') 로 바꾸니 해결됐습니다.

hw's profile image
hw

asked

Ask a question