linuxmint / hypnotix

An M3U IPTV Player
1.26k stars 169 forks source link

Python module unidecode missing #169

Closed brccabral closed 3 years ago

brccabral commented 3 years ago

Hi everyone, I just did a build from source, installed the .deb package, but when running it for the first time it threw this error. hypnotix.py crashed with ModuleNotFoundError in __main__: No module named 'unidecode' By just doing pip install unidecode solves the issue and the application runs fine, but is there any way to avoid the problem in a clean environment like I had?

ghost commented 3 years ago

This is bug in packaging. See my pull request #166

Meanwhile you can do git checkout 2.0 if you want to build stable version.

ghost commented 3 years ago

Also sudo apt install python3-unidecode is better than pip

brccabral commented 3 years ago

Great, easy fix then...