Open jan0sch opened 3 days ago
Doing the pip install way seems to work under Linux (tested with current Fedora). But the issue seems related to database migrations under FreeBSD/Python. If I copy the initial database (sqlite3 file) from the Linux install over to the FreeBSD one then Label Studio starts and runs without issues.
I don't think we explicitly claim FreeBSD support, but I don't see why it shouldn't work. Could you run these steps to help us understand which migration is broken under FreeBSD:
pip list -v | grep 1.14.0
to find the path to your label studio package:❯ pip list -v | grep 1.14.0
label-studio 1.14.0.post0 /path/to/your/site-packages pip
python /path/to/your/site-packages/label_studio/manage.py migrate
and share the output? I think this should reveal exactly which migration isn't being properly applied.Cheers, Jo
Describe the bug
After the installation via
pip install label-studio
it crashes upon start with an error message.To Reproduce Steps to reproduce the behavior:
python -m venv label-studio
cd label-studio
source bin/activate
pip install label-studio
label-studio start --data-dir ~/data --no-browser
Expected behavior Label Studio should start and run.
Screenshots
Environment (please complete the following information):
Additional context
I looked around and the sqlite3 database is created and contains some tables:
I tried to install globally instead of in an virtual environment but the behaviour and error stays the same.