1. 상황
- pip install jwt 명령어 실행시 에러 발생
- 에러코드:
ModuleNotFoundError: No module named 'setuptools_rust'
=============================DEBUG ASSISTANCE==========================
If you are seeing an error here please try the following to
successfully install cryptography:
Upgrade to the latest pip and try again. This will fix errors for most
users. See: https://pip.pypa.io/en/stable/installing/#upgrading-pip
=============================DEBUG ASSISTANCE==========================
2. 원인
- pip의 버전이 낮음. 에러코드에 해결방법이 적혀있습니다
3. 해결 방법
- pip upgrade 실행
pip install --upgrade pip
'프로그래밍 > 개발이슈' 카테고리의 다른 글
codeDeploy 배포 에러 - 상세 로그 확인방법 (0) | 2022.05.12 |
---|---|
bad indentation of a mapping entry / 빌드에러 / 자동배포 에러 (0) | 2022.05.12 |
invalid or unexpected token (0) | 2022.05.10 |
EB 와 MongoDB의 호환 문제 (0) | 2022.05.09 |
TypeError: Object of type ObjectId is not JSON serializable (0) | 2022.05.06 |