From 1517b20761378f6c7277db7f9796350f60f3ca50 Mon Sep 17 00:00:00 2001 From: guinmoon Date: Wed, 18 Jun 2025 10:29:43 +0300 Subject: [PATCH] fix Error No such object path '/modules/kwalletd' --- README.md | 17 ++++++++++++++++- requirements.txt | 3 +++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 7c4cded..f2c3a83 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ That's it! Have fun with althea! ## FAQ -Fedora 41 shows the following error: +* Fedora 41 shows the following error: `ERROR: Device returned unhandled error code -5` @@ -63,6 +63,21 @@ You can downgrade crypto policies to the previous Fedora version: `sudo update-crypto-policies --set FEDORA40` +* Error No such object path '/modules/kwalletd' + +On Arch with Plasma 6, and I got the same error. +``` +python3 -m venv venv +source ./venv/bin/activate +pip install pygobject requests keyring +``` +And then +``` +python3 main.py +``` +worked for me. + + ## Credits althea made by [vyvir](https://github.com/vyvir) diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..98c02c7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +pygobject +requests +keyring \ No newline at end of file