Dadangdut33 / Speech-Translate

A realtime speech transcription and translation application using Whisper OpenAI and free translation API. Interface made using Tkinter. Code written fully in Python.
MIT License
423 stars 55 forks source link

Adding all dependencies to __init__.py #66

Open AdvancedAI-NL opened 5 months ago

AdvancedAI-NL commented 5 months ago

I greatly admire your work here and while I was trying to cherrypick what I wanted to use, I quickly found myself in dependency hell. Then I found out about this amazing package called mkinit:

pip install mkinit

cd to the top folder before the actual folder containing the repo and then use:

mkinit <your-package-here> --recursive

Paste all of the dependencies in the init.py of the first layer of cd and presto, no more headaches. I hope this will help someone.