emluy 개발 일기

Django - TypeError: argument of type 'PosixPath' is not utterable 본문

웹 개발/뭔가 안될 때

Django - TypeError: argument of type 'PosixPath' is not utterable

yulme 2020. 10. 1. 23:49
SMALL

다음과 같은 오류가 날때!! 

1. 오류 상황

- python manage.py makemigrations 하면 저 오류가 났었음.

- 다른 사람들은 다 오류 없이 실행되는데 나만 오류가 계속 났었다 -> 내 가상환경 문제

 

2. 해결 

- 설치해야할 패키지들이 다 설치 안되어있었음

- django 버전도 확인 필요!

 

3. 해결 방법

- requirements.txt에 있는 패키지들을 다 설치 해줘야 했다.

3-1. 내 가상환경에 설치되어 있는 패키지들을 문서(requirements.txt)로 정리

$ pip freeze > requirements.txt

 

3-2. requirements.txt 문서에 있는 패키지들을 한번에 설치

$ pip install -r requirements.txt

 

itholic.github.io/python-requirements/

 

[python] requirements.txt로 패키지 관리하기

requirements.txt로 패키지 한 방에 관리하기

itholic.github.io

 

반응형
Comments