Describe the bug
A clear and concise description of what the bug is.
ModuleNotFoundError: No module named 'ruamel'
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Label-studio launches a browser and opens the login page
Screenshots
If applicable, add screenshots to help explain your problem.

Environment (please complete the following information):
Additional context
@karnsaurabhkumar does manual pip install ruamel solve this problem? (After this you need to install LS again)
No. Manual install throws another error:
ERROR: Could not find a version that satisfies the requirement ruamel (from versions: none)
ERROR: No matching distribution found for ruamel
The package is called "ruamel-yaml" or "ruamel_yaml" there may be issues depending on the pip version you have (see https://github.com/conda/conda/issues/10178). I was using conda and tried uninstalling it with pip and reinstalling with conda. Also if using conda make sure the environment is based on python 3.8 for the 1.0.0 release, for me this was enough to avoid any issues for a clean install and didnt run in to the above issue.
So it's supposed to be the problem with the (base) conda environment. Creating conda environment should fix this problem:
conda create --name ls-env python=3
conda activate ls-env
pip install label-studio
Understood. This was a conda issue and following installation just worked for me:
conda install ruamel.yaml
Thank you so much for responding
@smoreface Could you please add this issue to installation troubleshooting as "Anaconda problem with ruamel" or something like this?
Yes, will do! Thanks!
@smoreface have you added this into docs?
Yes, it's here: https://labelstud.io/guide/install.html#Troubleshoot-installation
Most helpful comment
Understood. This was a conda issue and following installation just worked for me:
conda install ruamel.yamlThank you so much for responding