| The recommended installation method still doesn't work without manual intervention. For the reference, I use WSL with the latest Ubuntu LTS version. - I tried using the recommended installation method of curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
Didn't work. I don't have python installed, just python3. Fair enough.- Using the above method, but replacing `| python` with `| python3`: The installation works. But trying to invoke poetry gives this error: /usr/bin/env: ‘python’: No such file or directory
Turns out poetry executable is calling python in the shebang.- Manually changed shebang in `$HOME/.poetry/bin/poetry` to `#!/usr/bin/env python3`: Now poetry runs successfully. I mean, it works, but it is fragile (shebang probably needs to be manually reset at every update), not beginner-friendly, and not ergonomic. Installing using pip3 has the same issue. In comparison, pipenv is much easier to install. I was hoping this issue would not be present for poetry v1.0, but unfortunately it is. |