Describe the bug
Initialization in Anaconda not possible when following the instructions
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I'm expecting results consistent with the instructions, so that I can initialize the application.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment (please complete the following information):
There seems you are using python label_studio/server.py start labeling_project --init, and it's for cases when you install LS from git repository instead of pip pypi. You should replace it to:
label-studio start labeling_project --init
I was able to initialize by moving to the Anaconda environment folder:
C:\Users\myusername\Anaconda3\envs\label-studio-env\Lib\site-packages\label_studio
and executing this:
python server.py start labeling_project --init
A pretty cumbersome solution, as I don't want to be running my project from the python library folder.
Your solution, however, worked much better. Thanks. You should document it as the way to initialize the project for Anaconda users.
Most helpful comment
I was able to initialize by moving to the Anaconda environment folder:
C:\Users\myusername\Anaconda3\envs\label-studio-env\Lib\site-packages\label_studio
and executing this:
python server.py start labeling_project --init
A pretty cumbersome solution, as I don't want to be running my project from the python library folder.
Your solution, however, worked much better. Thanks. You should document it as the way to initialize the project for Anaconda users.