srtgen
srtgen copied to clipboard
Wrong install option
You guys have the following in your example:
pip3 install -f requirements.txt
It should be:
pip3 install -r requirements.txt
At least, that's what worked for me. Thanks!