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
评论区