EvanSun· sun
回到文章列表

MacOS install labelStudio

2024 · 11 · 251 分钟阅读我的笔记 · macEvanSun

macos部署labelStudio

git clone https://github.com/HumanSignal/label-studio.git

# install dependencies
cd label-studio
pip install poetry
poetry install

# run db migrations
poetry run python label_studio/manage.py migrate

# collect static files
poetry run python label_studio/manage.py collectstatic

# start the server in development mode at http://localhost:8080
poetry run python label_studio/manage.py runserver