requirments.txt를 pip로 설치 했더니
엄청난 오류가 발생했다.
이것저것 시도해봤는데 결국엔 설치 불가능!
다시 한번 원인을 찾아보니!!! 가상환경의 파이썬 버전 문제일 수 있다는 것 확인
그래서 다른 파이썬 버전의 가상환경을 만들어 pip 설치해보니 문제 해결!
ERROR: Ignored the following versions that require a different python version: 0.7 Requires-Python >=3.6, <3.7; 0.8 Requires-Python >=3.6, <3.7
ERROR: Could not find a version that satisfies the requirement dataclasses==0.8 (from versions: 0.1, 0.2, 0.3, 0.4, 0.5, 0.6)
ERROR: No matching distribution found for dataclasses==0.8
나 같은 경우엔 위와 같은 에러가 발생했는데 찬찬히 읽어보면 파이썬 버전이 맞지 않는다는 얘기다!