You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys
I downloaded the current package and when I run it, I get an ImportError regarding "Callable" from "Collections".
The Python version I'm using is Python 3.10.12.
I tested this on a Windows machine (Win11) as well as an Ubuntu 22.04.1 Ubuntu.
I did the initial installation using "pip installdxlclient-5.6.0.5-py2.py3-none-any.whl".
However, I also tried to install everything from the ./lib/dxlclient-5.6.0.5.zip using "python setup.py install".
Has the Collections module received a short-term update, or is my approach wrong?
Thanks for your help
The text was updated successfully, but these errors were encountered:
I found out, that the import "from collections import Callable" in the file /Lib/site-packages/socks.py has to be changed to "from collections.abc import Callable" as the collections-package has moved.
Also i've got an ModuleNotFoundError: No module named 'oscrypto._win' after that, which can be resolved through "pip install oscrypto"
Hi guys
I downloaded the current package and when I run it, I get an ImportError regarding "Callable" from "Collections".
The Python version I'm using is Python 3.10.12.
I tested this on a Windows machine (Win11) as well as an Ubuntu 22.04.1 Ubuntu.
I did the initial installation using "pip installdxlclient-5.6.0.5-py2.py3-none-any.whl".
However, I also tried to install everything from the ./lib/dxlclient-5.6.0.5.zip using "python setup.py install".
Has the Collections module received a short-term update, or is my approach wrong?
Thanks for your help
The text was updated successfully, but these errors were encountered: