Ebrahim Mehri
Ebrahim Mehri

Reputation: 83

Python package is not recognized even after installation

I installed Python

python -V
Python 3.12.2

I installed Python 3.12.2 and PIP and set PATH. I have set PATH I uninstalled previous version

pip -V
pip 24.2

The package installs successfully. But does not run. Package is not recognized

py -m pip install goslate

'goslate' is not recognized as an internal or external command, operable program or batch file.

Upvotes: -1

Views: 73

Answers (1)

CodeFurry
CodeFurry

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

Related Questions