Poetry 설치 에러

밤새·2024년 11월 5일
0

에러 모음

목록 보기
18/19

⚠️ Poetry가 외부 가상 환경에서 프로젝트 패키지 경로를 찾지 못해 발생한 경로 참조 오류

🤔 에러 내용 및 원인

🔍 에러 내용

Installing dependencies from lock file
No dependencies to install or update
Installing the current project:  (0.1.0)
Warning: The current project could not be installed: No file/folder found for package 
If you do not want to install the current project use --no-root.
If you want to use Poetry only for dependency management but not for packaging, you can disable package mode by setting package-mode = false in your pyproject.toml file.`
In a future version of Poetry this warning will become an error!

🔍 에러 원인

이 에러의 원인은 Poetry가 패키지 경로를 정확하게 찾지 못했기 때문입니다.

에러 해결 방법

터미널에서 아래와 같이 입력한 후

poetry config virtualenvs.in-project
poetry config virtualenvs.in-project true

폴더 안에 venv가 생겼다면


실행해야할 파일의 파이썬을 .venv파일로 바꿔서 실행하여 해결하였습니다~

profile
프로젝트를 통해 배운 개념이나 겪은 문제점들을 정리하고, 회고록을 작성하며 성장해나가는 곳입니다 😊

0개의 댓글