Reputation: 83
I installed Python
python -V
Python 3.12.2
I installed Python 3.12.2 and PIP and set PATH.
I uninstalled previous version
pip -V
pip 24.2
The package installs successfully. But does not run.
py -m pip install goslate
'goslate' is not recognized as an internal or external command, operable program or batch file.
Upvotes: -1
Views: 73
Reputation: 11
It seems like you are trying to run a Python script as a Python independent script. I don't know about the package, but I can say that Test1.srt es are the valid arguments, if your arguments are according to the package. Try running it with python module specification.
python -m goslate Test.srt es
Same like you did for package installation:
python -m pip install goslate
Upvotes: 0