From e32eb98bb72846b5dee8a7dd4e4903fca3131584 Mon Sep 17 00:00:00 2001 From: Yuvi9587 Date: Sat, 7 Jun 2025 17:17:28 +0530 Subject: [PATCH] Commit --- readme.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index b86e00f..fe3f450 100644 --- a/readme.md +++ b/readme.md @@ -88,7 +88,7 @@ Kemono Downloader offers a range of features to streamline your content download Open your terminal or command prompt and run: ```bash -pip install PyQt5 requests Pillow +pip install PyQt5 requests Pillow mega.py ``` ### Running the Application @@ -104,6 +104,25 @@ python main.py --- +## Troubleshooting + +### AttributeError: module 'asyncio' has no attribute 'coroutine' + +If you encounter an error message similar to: +``` +AttributeError: module 'asyncio' has no attribute 'coroutine'. Did you mean: 'coroutines'? +``` +This usually means that a dependency, often `tenacity` (used by `mega.py`), is an older version that's incompatible with your Python version (typically Python 3.10+). + +To fix this, activate your virtual environment and run the following commands to upgrade the libraries: + +```bash +pip install --upgrade tenacity +pip install --upgrade mega.py +``` + +--- + ## Contribution Feel free to fork this repo and submit pull requests for bug fixes, new features, or UI improvements!