Debian 8 - Yunohost CLI Require miniupnpc lib

After finished the 1st install successfully, I got an error during the post install.
Any know how to solve this problem

root@:/# yunohost tools postinstall
Main domain: xxxxxx.xx
New administration password:
Confirm new administration password:
Error: Yunohost CLI Require miniupnpc lib
root@:/#

output log

root@/# cat /var/log/yunohost.log
Traceback (most recent call last):
File “/usr/bin/yunohost-api”, line 155, in
_init_moulinette()
File “/usr/bin/yunohost-api”, line 78, in _init_moulinette
from moulinette import init
ImportError: No module named moulinette
Traceback (most recent call last):
File “/usr/bin/yunohost-api”, line 155, in
_init_moulinette()
File “/usr/bin/yunohost-api”, line 78, in _init_moulinette
from moulinette import init
ImportError: No module named moulinette
Traceback (most recent call last):
File “/usr/bin/yunohost-api”, line 155, in
_init_moulinette()
File “/usr/bin/yunohost-api”, line 78, in _init_moulinette
from moulinette import init
ImportError: No module named moulinette
root@:/#

root@:/# cat /var/log/yunohost/yunohost-cli.log
2015-11-22 15:16:42,753 INFO moulinette.actionsmap process - processing action [27098.1]: yunohost.tools.postinstall
2015-11-22 15:22:02,894 INFO moulinette.actionsmap process - processing action [30810.1]: yunohost.tools.postinstall
2015-11-22 15:45:51,255 INFO moulinette.actionsmap process - processing action [7832.1]: yunohost.tools.postinstall
root@:/#

It seems your system lacks the package miniupnpc. Maybe you could tey to install it manually :

apt-get install miniupnpc

I have allready installed it, forgot to mention that, an it’s running
Still receiving the error message Yunohost CLI Require miniupnpc lib

root@# apt-get install miniupnpc
Reading package lists… Done
Building dependency tree
Reading state information… Done
miniupnpc is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

root@# service minissdpd status
[ ok ] MiniSSDPd is running.

2015-11-22 18:57:18,328 INFO moulinette.actionsmap process - processing action [26194.1]: yunohost.tools.postinstall
2015-11-22 18:57:55,253 INFO moulinette.actionsmap process - processing action [26279.1]: yunohost.tools.postinstall

So, according to your output log:

from moulinette import init
ImportError: No module named moulinette

It means moulinette is not in your python path. I think an error occured silently during installation.

How can i fix this, to add the correct path, which one is it ?

python -c “import sys; print sys.path”

[‘’, ‘/usr/local/lib/python27.zip’,
‘/usr/local/lib/python2.7’,
‘/usr/local/lib/python2.7/plat-linux2’,
‘/usr/local/lib/python2.7/lib-tk’,
‘/usr/local/lib/python2.7/lib-old’,
‘/usr/local/lib/python2.7/lib-dynload’,
‘/usr/local/lib/python2.7/site-packages’]

Great question.

Sorry, but I have no idea, I would suggest you to retry installation because if there was an error there may be some more…