Compare commits

...

2 Commits

Author SHA1 Message Date
Tero Paloheimo a1d9fd4f5a
Merge d93b0480f0 into 4f7cbc4d93 2024-02-09 08:04:33 -07:00
Tero Paloheimo d93b0480f0 Add dbus-python to required dependencies
SafeEyes does not start without dbus-python and therefore
it is added to required dependencies in setup.py.
2023-12-30 19:55:25 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -140,7 +140,7 @@ Some Linux systems like Cent OS do not have matching dependencies available in t
pip3 install virtualenv --user
virtualenv --no-site-packages venv
source venv/bin/activate
pip3 install dbus-python safeeyes
pip3 install safeeyes
```
3. Start Safe Eyes from terminal

View File

@ -7,6 +7,7 @@ requires = [
'babel',
'psutil',
'croniter',
'dbus-python',
'PyGObject',
'python-xlib'
]