개발관련
[poetry error] scipy requires Python <3.13,>=3.9, so it will not be satisfied for Python >=3.13,<4.0
지구킹
2023. 7. 17. 18:57
728x90
해당 에러는 poetry 에서 python 버전을 명시해주면 된다.
아래와 같이 pyproject.toml내 python버전을 python = "^3.9"에서 python = "==3.9.1"로 바꿔주면 된다.
Before
...
[tool.poetry.dependencies]
python = "^3.9"
...
After
...
[tool.poetry.dependencies]
python = "==3.9.1"
...
728x90