I've been trying to run pip list -o
and pip list --outdated
to see if any packages need to be updated but it enters a loop of printing: WARNING: Keyring is skipped due to an exception: Failed to create the collection: Prompt dismissed..
I've upgraded keyring and the version was already up-to-date. I've seen this keyring warning whilst using pip install {package} --upgrade
to upgrade other packages as well.
keyring --disable
helped in my case. As far as I can see it added en emptybackend
in the~/.local/share/python_keyring/keyringrc.cfg
file. Some references: github.com/pypa/pip/issues/6773 -- github.com/jaraco/keyring#disabling-keyring – Rosefish