에러

· 에러
anaconda prompt에서 깃허브를 클론하고 requirements.txt를 실행하는 과정에서 다음과 같은 오류가 발생했다. ERROR: Could not find a version that satisfies the requirement sentencepiece==0.1.85 (from versions: 0.0.0, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.0.6, 0.0.7, 0.0.9, 0.1.0, 0.1.1, 0.1.2, 0.1.3, 0.1.83, 0.1.86, 0.1.91, 0.1.92, 0.1.94, 0.1.95, 0.1.96, 0.1.97, 0.1.98, 0.1.99) ERROR: No matching distribution found for sentencepiece==0.1..
· 에러
nodejs 프로젝트를 npm run start 하였는데 다음과 같은 에러가 났다. MongoParseError: Invalid scheme, expected connection string to start with "mongodb://" or "mongodb+srv://" 알고보니 mongoURI에 띄어쓰기로 인해 발생된 에러였다. mongoURI: 'mongodb + srv://[몽고디비계정]@boilerplate.nbsovwf.mongodb.net/?retryWrites=true&w=majority' 로 되어있던 것을 띄어쓰기를 제거해 mongoURI: 'mongodb+srv://[몽고디비계정]@boilerplate.nbsovwf.mongodb.net/?retryWrites=true&w=majori..
· 에러
nodejs에서 npm run start를 실행하였는데 다음과 같은 에러가 떴다. Emitted 'error' event on Server instance at: at emitErrorNT (node:net:1399:8) at processTicksAndRejections (node:internal/process/task_queues:83:21) { code: 'EADDRINUSE', errno: -4091, syscall: 'listen', address: '::', port: 5000 } 포트가 이미 사용중이라는 에러이다. 해결법은 해당 포트를 삭제하는 것이다. 해결방법 윈도우의 경우) cmd 창에 다음의 코드를 입력한다. netstat -ano | findstr "포트번호" 그러면 다음과 같이 pi..
korinj
'에러' 카테고리의 글 목록