Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python: No Module named suds

Tags:

python

suds

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 ?

like image 579
Sammee Sharma Avatar asked Nov 09 '22 12:11

Sammee Sharma


1 Answers

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 .

like image 187
Sammee Sharma Avatar answered Nov 14 '22 23:11

Sammee Sharma