Kodi Community Forum
additional python library - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+--- Thread: additional python library (/showthread.php?tid=57296)



additional python library - khairil - 2009-09-02

I need to have some third party additional library to complete my xbmc scripts which was paramiko ssh library

I knew that xbmc python version is 2.4.5 http://www.xbmc.org/wiki/?title=Python_Development#Libraries

but how can we run 'python setup.py build' to install in the xbmc environment..

thanks


- rwparris2 - 2009-09-02

you don't need to 'install' it, just import it.
see other scripts & plugins.


- khairil - 2009-09-04

rwparris2 Wrote:you don't need to 'install' it, just import it.
see other scripts & plugins.

thanks rwparris2,
the problem is we cannot just import this library (paramiko) in xbmc. I can successfully import (without executing 'python setup.py build') another library like 'iniparse' or 'elementtree', but this paramiko library is quite different.

any suggestion?


- rwparris2 - 2009-09-04

there is no problem importing paramiko itself.
It looks like paramiko is dependent on another library that has to be compiled per platform.