.poetry/lib/poetry/_vendor/py2.7/subprocess32.py:149: RuntimeWarning:
See original GitHub issueAfter installing Poetry with:
$ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
or
$ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
I see this warning:
$ poetry --version
~/.poetry/lib/poetry/_vendor/py2.7/subprocess32.py:149: RuntimeWarning: The _posixsubprocess module is not being used. Child process reliability may suffer if your program uses threads.
"program uses threads.", RuntimeWarning)
Poetry version 1.0.3
$ uname -srvmo
Linux 5.3.0-40-generic #32~18.04.1-Ubuntu SMP Mon Feb 3 14:05:59 UTC 2020 x86_64 GNU/Linux
Not sure why there is this warning???
Issue Analytics
- State:
- Created 4 years ago
- Reactions:11
- Comments:8 (2 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
When I downloaded the latest
get-poetry.py
and installed bypython3 get-poetry.py
in Ubuntu, same error still occurred.I changed
get-poetry.py
as follows (around L.593), and this problem was solved.get-poetry.py
:curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py > get-poetry.py
get-poetry.py
on line 200: fromBIN = """#!/usr/bin/env python
toBIN = """#!/usr/bin/env python3
ps. f-string modification doesn’t work on Python3.8