Issues with vlc-ctrl on Windows
antnieszka opened this issue · 2 comments
antnieszka commented
GestureMusicPlayer-py3/venv/lib/python3.8/site-packages/vlc_ctrl/player.py", line 1, in <module>
import dbus
ModuleNotFoundError: No module named 'dbus'
causes:
subprocess.CalledProcessError: Command '['vlc-ctrl', 'play']' returned non-zero exit status 1.
Consider using https://wiki.videolan.org/Python_bindings/
SehejBakshi commented
@antnieszka Could you please tell me how to run this so I can try to debug this?
antnieszka commented
I run it on Linux/Manjaro like this:
$ python3 -V
Python 3.8.5
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
# this one may be different on other distros and afaik TKinter is preinstalled with python on windows
$ sudo pacman -S tk
then simply: python main.py
worked.