我正在通过python 3.7安装label-studio。我已经使用这个命令来安装label-studio。
py -m pip install label-studio我正在遵循官方网站的说明。
# Requires >=Python3.6, <3.9
pip install label-studio
# Start the server at http://localhost:8080
label-studio但是当我启动这个程序时,它在cmd中给出了以下错误。
'label-studio' is not recognized as an internal or external command,
operable program or batch file.我用的是windows10。
在这方面的任何帮助都将受到高度的感谢。
谢谢。
发布于 2021-07-31 05:34:49
您可以使用:
py -m label-studio您的<path/to/python/exe>\Scripts不在PATH中。
你在安装python的时候检查过Add Python 3.7 to PATH选项吗?
发布于 2021-08-05 00:21:47
推荐使用venv:
python3 -m venv c:\path\to\myenv
c:\path\to\myenv\Scripts\activate.bat
pip install -U label-studio
label-studiohttps://stackoverflow.com/questions/68598785
复制相似问题