Py3.10 Support
#4608
Replies: 1 comment
-
Hm, I tried this with 3.10 on my workstation and it works fine: $ pyenv install 3.10.0
$ cd $(mktemp -d)
$ pyenv local 3.10.0
$ mkdir poetry_home
$ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | POETRY_HOME=$(pwd)/poetry_home python3.10
$ poetry_home/bin/poetry --version
Poetry version 1.1.11
$ poetry_home/venv/bin/python --version
Python 3.10.0 Your error seems related to using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, not sure if this was asked before, but I would like to know what is the status of support for python 3.10 as it has now been officially released? I tried to set up afresh by uninstalling poetry completely, then installing 3.10 with pyenv, setting it as the global version, reloading the shell (to ensure 3.10 is picked up globally) and then installing poetry using the recommended method:
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
After this, simply calling
poetry
results in the following:There was an Issue - #3187 which explains that one could do:
But this seems hacky in a way. Is there some sort of timeline on when proper 3.10 support will be available as it seems that simply installing poetry this way ends up making it unusable unless the above symlink is created to "fix" the issue.
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions