bluppfisk / coindicator

A crypto-currency (Bitcoin, Ethereum et al) market price indicator for the Linux desktop. Sits in the tray and lets you set alerts. Supports GNOME, Unity and KDE.
MIT License
160 stars 40 forks source link

Install successful, yet `ModuleNotFoundError: No module named 'dbus'` #76

Closed sgtsquiggs closed 2 years ago

sgtsquiggs commented 3 years ago

Install script ran without error but currently seeing:

Traceback (most recent call last):
  File "./coin/coin.py", line 13, in <module>
    import dbus
ModuleNotFoundError: No module named 'dbus'

Ubuntu 20.04

bluppfisk commented 3 years ago

are you running it using ./run.sh, through the app launcher or ...?

pooldiver69 commented 3 years ago

have the same issue. neither app launcher or ./run.sh is working. once run ./run.sh, it shows this err message

bluppfisk commented 3 years ago

Try

source bin/activate
pip install dbus

or: sudo apt install python-dbus

pooldiver69 commented 3 years ago

Try

source bin/activate
pip install dbus

or: sudo apt install python-dbus

pip install dbus

shows ERR ERROR: Could not find a version that satisfies the requirement dbus (from versions: none) ERROR: No matching distribution found for dbus

And sudo apt install python-dbus ran and package installed, but still showing the same err

georgekarapi commented 3 years ago

Also happened to me, after clearing the folder from the files created by setup.py and re-running Ι was able to make it work

SrBrahma commented 3 years ago

Try

source bin/activate
pip install dbus

or: sudo apt install python-dbus

pip install dbus

shows ERR ERROR: Could not find a version that satisfies the requirement dbus (from versions: none) ERROR: No matching distribution found for dbus

And sudo apt install python-dbus ran and package installed, but still showing the same err

Have you fixed it? Same issue here

bluppfisk commented 3 years ago

I came across a post that says trying to install dbus-next. So, inside the virtual environment, run pip install dbus-next. I haven't tried. What OS are you on?

bluppfisk commented 2 years ago

closing due to inactivity