목록웹 개발/미분류 오류 (3)
가수면
Error: error:0308010c:digital envelope routines::unsupported
해당 프로젝트가 컴퓨터에 설치된 노드의 버전과 맞지 않는 경우 이런 오류가 발생한다. 해결 방법은 두 가지가 있다. 1. 노드를 다운그레이드한다. 2. 터미널을 열고 다음과 같이 붙여넣는다. Linux 및 macOS(Windows Git Bash) export NODE_OPTIONS=--openssl-legacy-provider Windows 명령 프롬프트- set NODE_OPTIONS=--openssl-legacy-provider Windows PowerShell- $env:NODE_OPTIONS = "--openssl-legacy-provider" 3. 그래도 안 될 경우 package.json에서 다음 줄을 변경. "start": "react-scripts start" ↓ "start": "rea..
웹 개발/미분류 오류
2022. 12. 7. 14:23
module 'jwt' has no attribute 'ExpiredSignatureError'
AttributeError: module 'jwt' has no attribute 'decode' AttributeError: module 'jwt' has no attribute 'encode' 등이 뜨는 에러는 PyJWT 모듈 설치로 해결할 수 있다. pip install PyJWT
웹 개발/미분류 오류
2022. 11. 17. 21:10