I am trying to install poetry as early as possible in a clean docker run -it ubuntu:18.04 interactive session:
apt update
apt install python3 curl
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
at this point, poetry installed but won't run because there's no "python" on the system; only python3. so I made a symlink and tried again:
poetry --version
Traceback (most recent call last):
File "/root/.poetry/lib/poetry/_vendor/py3.6/keyring/backend.py", line 203, in _load_plugins
init_func = ep.load()
File "/root/.poetry/lib/poetry/_vendor/py3.6/importlib_metadata/__init__.py", line 92, in load
module = import_module(match.group('module'))
File "/usr/lib/python3.6/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 994, in _gcd_import
File "<frozen importlib._bootstrap>", line 971, in _find_and_load
File "<frozen importlib._bootstrap>", line 955, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 665, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 678, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/usr/lib/python3/dist-packages/keyrings/alt/Windows.py", line 9, in <module>
from . import file_base
File "/usr/lib/python3/dist-packages/keyrings/alt/file_base.py", line 13, in <module>
from keyring.util.escape import escape as escape_for_ini
ModuleNotFoundError: No module named 'keyring.util.escape'
I retried the steps using apt install python3-pip followed by python3 -m pip install poetry instead of the bootstrap script, but I get the same error when trying to run poetry.
What am I missing exactly?
I am trying to install poetry as early as possible in a clean
docker run -it ubuntu:18.04interactive session:at this point, poetry installed but won't run because there's no "python" on the system; only python3. so I made a symlink and tried again:
I retried the steps using
apt install python3-pipfollowed bypython3 -m pip install poetryinstead of the bootstrap script, but I get the same error when trying to run poetry.What am I missing exactly?