I manually installed vnfmanager package from the follwing git url
https://github.com/TCS-TelcoCloud/vnfmanager
and followed the installation steps as specified
git clone https://github.com/TCS-TelcoCloud/vnfmanager.git
python setup.py install
Installation is done without any errors in ("/usr/local/lib/python2.7/dist-packages/ ") But, when i try to import the module from python interpreter am getting "ImportError: No module named vnf_manager "
Am working with python 2.7 and here are some more details on it
which -a python
/usr/bin/python
sys.path output from python
['', '/usr/local/lib/python2.7/dist-packages/vnfsvc-2015.1.0-py2.7.egg', '/usr/local/lib/python2.7/dist-packages/python_vnfsvcclient-2015.1.0-py2.7.egg', '/usr/local/lib/python2.7/dist-packages/vnfmanager-2015.1.0-py2.7.egg', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-x86_64-linux-gnu', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', '/usr/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages']
when i try to import
import vnfmanager.vnf_manager
am getting error
ImportError: No module named vnf_manager
Please Help .