Hello! I keep getting the following error code when I try to install the GroupyAPI package in Python. Any suggestions?
Try using pip instead. Like this command pip install GroupyAPI
. Poetry is really buggy.
run in shell
pip uninstall typing
typing
is now built-in, and the package is deprecated
Thanks for the help! I tried that, but it gave the same error. Any other suggestions? Thanks again.
could you link the repl or a minimal repl which reproduces the issue?
Sure! Here it is: https://replit.com/@JoshuaKaluf/groupme-bot-kicker#main.py. If you can’t see it, lmk and I’ll publish it…I haven’t been on replit.com since it transitioned from repl.it, so I forgot a lot of how this works.
Hello!
Here are some methods I’ve found to help the situation
Method 1
Method 2
Thanks for the help, but neither of those methods worked. I think I’ll just try something else. Thanks again!
I think I finally found a solution that worked. Apparently, the community has been aware of an issue with the typing
module for a while: AttributeError: type object 'Callable' has no attribute '_abc_registry' · Issue #131 · ethereum/eth-abi · GitHub.
My Solution
- In the bash terminal, cd into the directory containing the
typing
module. - Enter
rm typing.py
- Enter
pip install GroupyAPI
- Watch incredulously as it successfully installs.
So there you go! This fix continued even after I reloaded the repl. Oh, and I also accidentally upgraded to Nix by installing some sort of vim tool.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.