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

+ Recent posts