This commit is contained in:
Yuvi9587
2025-06-07 17:17:28 +05:30
parent 461249b8ba
commit e32eb98bb7

View File

@@ -88,7 +88,7 @@ Kemono Downloader offers a range of features to streamline your content download
Open your terminal or command prompt and run: Open your terminal or command prompt and run:
```bash ```bash
pip install PyQt5 requests Pillow pip install PyQt5 requests Pillow mega.py
``` ```
### Running the Application ### 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 ## Contribution
Feel free to fork this repo and submit pull requests for bug fixes, new features, or UI improvements! Feel free to fork this repo and submit pull requests for bug fixes, new features, or UI improvements!