通过python 3.7安装label-studio时出现问题



我正在通过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.

我用的是windows 10。

在这方面的任何帮助都将是非常感谢的。

谢谢。

您可以使用:

py -m label-studio

您的<path/to/python/exe>Scripts不在PATH中。
安装python时是否检查了Add Python 3.7 to PATH选项?

推荐使用venv:

python3 -m venv c:pathtomyenv
c:pathtomyenvScriptsactivate.bat
pip install -U label-studio
label-studio

相关内容

  • 没有找到相关文章

最新更新