Python Modules doesnot show after install -


i trying install project https://github.com/alvations/pywsd using setup.py command

sudo python setup.py install running install running build running build_py running install_lib running install_egg_info removing /usr/local/lib/python2.7/dist-packages/pywsd-1.0.egg-info writing /usr/local/lib/python2.7/dist-packages/pywsd-1.0.egg-info 

after installing, module available @ /usr/local/lib/python2.7/dist-packages/

but when trying import pywsd in pything script file way

import sys import getopt import pywsd 

the pywsd module not auto suggested @ time of typing , if forcedly write import pywsd , finds location @ /dist-packages/ folder . when run file shows error import pywsd importerror: no module named pywsd


Comments

Popular posts from this blog

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -