Troubleshooting
If you are having difficulties with setting up, you may find some of the steps here to be helpful.
Issues
- Existing Python installation could cause
pip install --force poetry==1.8.0
to fail.
pip install --force poetry==1.8.0
...
ImportError: cannot import name 'Application' from 'cleo'
The workaround is to remove and reinstall.
pip uninstall -y poetry poetry-core poetry-plugin-export
pip install --force poetry==1.8.0
poetry install
could hang due to being unable to unlock keyring: Issue
The workaround is to disable keyring.
sudo python3 -m keyring --disable
poetry install