Reputation: 91
I have python 2.7.9 installed. When I run my script, I get the following error:
from suds.client import client
ImportError: No module named suds.client
So I downloaded the suds library from:
https://fedorahosted.org/releases/s/u/suds/python-suds-0.4.tar.gz
and extracted it and installed it using command (python setup.py install
).
The installed suds file is placed in Directory C:\Python27\Lib\site-packages
as suds-0.4-py2.7.egg
.
But when i again run my script, I found the same error.
Am I missing something ?
Upvotes: 5
Views: 11216
Reputation: 2398
My missing suds issue was resolved by using suds-jurko as a replacement for the original suds package. Python 3.5.1
Upvotes: 0
Reputation: 91
Now I got, Actually I needed to extract this
suds-0.4-py2.7.egg file.
After extracting , it will create a suds folder in the directory 'C:\Python27\Lib\site-packages
It worked for me .
Upvotes: 1