3

I am installing label-studio via python 3.7. I have used this command for installing label-studio.

py -m pip install label-studio

I am following the instructions from official site.

# Requires >=Python3.6, <3.9
pip install label-studio

# Start the server at http://localhost:8080
label-studio

but when I used to launch this program it gives the following error in cmd.

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

I am using windows 10.

Any help in this regard will be highly appreciated.

Thank You.

enthusiastic
  • 31
  • 1
  • 3

2 Answers2

0

You can use:

py -m label-studio

Your <path/to/python/exe>\Scripts is not in PATH.
Have you checked the Add Python 3.7 to PATH option when installing python?

gfdsweds
  • 345
  • 3
  • 11
0

The recommended way is to use venv:

python3 -m venv c:\path\to\myenv
c:\path\to\myenv\Scripts\activate.bat
pip install -U label-studio
label-studio
Max Tkachenko
  • 792
  • 1
  • 12
  • 30