error in suds-jurko setup command: use_2to3 is invalid

Viewed 6040

enviroment info: python3 --version:Python 3.6.5 pip3 --version:pip 21.2.4

when i execute : "pip3 install -r requirements.txt" there is a error:error in suds-jurko setup command: use_2to3 is invalid

2 Answers

Based on comments here, I was able to install this package using

pip install "setuptools==58.0.0"
pip install -r requirements.txt --use-deprecated=legacy-resolver

Use a community fork of suds-jurko. It is releasing packages under the main suds package name

Details: suds-commutity

Related