Installing Python versions? #4161
-
Hello together, if I understood things right, poetry is able to install different python versions for a project as well or am I missunderstanding something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
No, poetry does not install python versions. that is a requirement that you can specify in the |
Beta Was this translation helpful? Give feedback.
No, poetry does not install python versions. that is a requirement that you can specify in the
pyproject.toml
. if the requirement of python version is not satisfied, the installation fails. Its basically telling poetry at what minimum version required will your project run.