suds install error: no module named client

后端 未结 7 1142
粉色の甜心
粉色の甜心 2020-12-08 19:21

Trying to install suds with pip-3.2 and it fails with the error

sudo pip-3.2 install suds
Downloading/unpacking suds
  Running setup.py egg_info for package          


        
7条回答
  •  [愿得一人]
    2020-12-08 19:26

    In python 3.7.7, you can use

    pip install suds-py3
    

    to install suds py3 package. If your code not work as expected, you can delete the suds directory in

    python3.7/site-packages/
    

    and rerun

    pip install suds-py3
    

提交回复
热议问题