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파일로 바꿔서 실행하여 해결하였습니다~