Open Terminal.app
.
Check Python3 is installed in your OS.
python3 --version
<aside> <img src="/icons/light-bulb_gray.svg" alt="/icons/light-bulb_gray.svg" width="40px" /> If not installed, please follow this guide in “The Hitchhiker’s Guide to Python”.
</aside>
Install labelme
Python package.
python3 -m pip install -I git+https://github.com/wkentaro/labelme.git#egg=labelme
Make sure installation was successful.
python3 -c 'import labelme; print(labelme); print(labelme.__version__)'