kodi-connect / kodi-connect-addon

MIT License
27 stars 16 forks source link

Kodi Connect Devices #32

Open Pr0k0Man opened 3 years ago

Pr0k0Man commented 3 years ago

Hi, i'm trying to use Kodi Connect, i have executed all the steps in the tutorial here https://kodi-connect.github.io/, adding the lambda code and the amzn1 also the arn code the skill is visible in my app, i have given also persimmons but the device is still connected to NO, and i cannot discover any device from the app.

tkislan commented 3 years ago

Connected status doesn't have anything to do with the rest of the setup. It is solely between the web page, and your Kodi device. If the Kodi addon cant connect, there is most likely some problem on your Kodi machine. Only way to find out is to look into logs It would also help to know, what device you are running it on, because I know people had issues getting it to run on xbox, because it has some stupid sandboxing rules for python.

Pr0k0Man commented 3 years ago

Thnx for the reply, I'm running Kodi on a Linux machine, and I'm new to this, where I can find the logs? In the Kodi application?? in the Linux log files? If it is easy for you to provide the path?

tkislan commented 3 years ago

That depends on your installation .. you're better of looking somewhere on Kodi pages/forums

Pr0k0Man commented 3 years ago

Ok thnx a lot for the info

tkislan commented 3 years ago

Please update this issue if/when you find a root cause .. it might help others with the same issue

Pr0k0Man commented 3 years ago

I figured out the solution, I was missing python-Levenshtein from my library, found it from Kodi Logfile. It can be installed in Linux with pip or pip3....so

sudo pip3 install python-Levenshtein if you have installed python

or if you do not have pip

sudo apt-get install python3-pip sudo pip3 install python-Levenshtein

Cheers