poetry install --no-root 실행 시 에러
The lock file is not compatible with the current version of Poetry.
Upgrade Poetry to be able to read the lock file or, alternatively, regenerate the lock file with the poetry lock
command.
poetry 업데이트
pip install --upgrade poetry
예전 깃 클론 시 발생(참고 블로그)
package subpath './lib/parser' is not defined by "exports" in ~~[파일이름]~~
→ npm 버전이 맞지 않아서 발생하는 사이드 이펙트
npm update
npm audit fix --force
//npm audit 명령어는 Node.js 프로젝트에서 사용되는 의존성 패키지들의 보안 취약점을 검사하고, 보안 문제를 해결할 수 있는 업데이트 정보를 제공하는 npm의 기능
npm run dev
실행 시, 리액트와 넥스트 충돌
→ 리액트 버전을 업그레이드 : npm install react@latest react-dom@latest
pip 설치 오류( 참고 블로그)
Package 'python3-pip' has no installation candidate
→ sudo apt-get install python3-setuptools
→ sudo apt update
→ sudo apt install python3-pip
linux, sh start.sh
..22: exec: uvicorn: not found
→ python3 -m uvicorn main:app --reload
→ pip install ..필요한 항목들
..
→ sh start.sh 가 아닌 python3 -m uvicorn main:app --reload 로 실행..
groq
[ERROR] Max retries exceeded with url
→ ollama serve
DI ERROR : python 3.10
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. tensorflow-macos 2.13.0 requires typing-extensions<4.6.0,>=3.6.6, but you have typing-extensions 4.10.0 which is incompatible.
→ python10이 설치되어있는데, 10은 typing-extensions이 4.5까지만 설치된다.
→ 파이썬을 11로 바꿔서 재설치를 해야한다.