-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation errors with Python 3.10 #120
Comments
Workaround is to do the following:
Version of setuptools before: 39.0.1 |
Thanks for the report. I'll see if I can figure out a work around on our side, and thanks for sharing your solution, at the very least this should help other people running into this issue. |
Erik,
I'm not sure there is a workaround here. The first error message indicated
a version dependency issue with the python install:
Keyring is skipped due to an exception: module 'collections' has no
attribute 'MutableMapping'
Looking at versions, MutableMapping was deprecated in 3.3 and removed
in 3.10, so pip was already not going to be happy installing packages
in 3.10.
pkg_resources, which generated this exception, was probably around the
same generation as setuptools (39 is early 2018, ~3.7) and needed
MutableMapping, so it was fundamentally broken. Versions of
setuptools post-39 are removing pkg_resources dependencies, which is
probably why the setuptools upgrade fixed it.
Jay
…On Fri, May 20, 2022 at 1:09 PM Erik Olof Gunnar Andersson < ***@***.***> wrote:
Thanks for the report. I'll see if I can figure out a work around on our
side, but at the very least this should help other people running into this
issue.
—
Reply to this email directly, view it on GitHub
<#120 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AABJGJR2V5CCP3TATZARZELVK7INVANCNFSM5WP4NEYA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am using Python3 version 3.10.4 on Ubuntu 18.04 LTS and encountering the following error when attempting to install amqpstorm:
I have seen recommendations to upgrade to the latest version of
requests
when this happens, but I already have the latest version of requests installed, here is the contents of my requirements.txt file:The text was updated successfully, but these errors were encountered: