mirror of
https://github.com/FujiwaraChoki/MoneyPrinterV2.git
synced 2026-04-26 14:45:53 +03:00
[GH-ISSUE #96] requirements.txt needs an update. #72
Labels
No labels
bug
enhancement
good first issue
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/MoneyPrinterV2#72
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @iamkavinnnn on GitHub (Feb 15, 2025).
Original GitHub issue: https://github.com/FujiwaraChoki/MoneyPrinterV2/issues/96
I am getting multiple issues when trying to install the dependencies. Could you guys check that out for me please?
File "C:\Users\skavi\projects\MoneyPrinterV2\src\main.py", line 1, in <module> import schedule ModuleNotFoundError: No module named 'schedule'TTS also seems to not get installed directly for some reason. Not sure if its in issue from TTS.
@omgitsjan commented on GitHub (Feb 15, 2025):
It looks like the issue is due to TTS not being compatible with Python versions >3.12.
A quick workaround that worked for me was downgrading to Python 3.9.13 (Download here). Python 3.9 is recommended for this project, so it might work with other versions as well, but in my case, this version resolved the issue.
After downgrading, installing TTS using
requirements.txtshould work without issues. You can then start the project withpython src/main.py(as stated in the README).If you still encounter errors, try installing it manually with
pip install git+https://github.com/coqui-ai/TTS.git. This should provide a more detailed error message.@FujiwaraChoki commented on GitHub (Feb 15, 2025):
As @omgitsjan stated, this is an issue with Python Versions. Please downgrade to Python 3.9. Will close now.