1. Open Terminal.app.

    2023-08-06_00-25.png

  2. Check Python3 is installed in your OS.

    python3 --version
    

    Untitled

    <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>

  3. Install labelme Python package.

    python3 -m pip install -I git+https://github.com/wkentaro/labelme.git#egg=labelme
    

    Untitled

  4. Make sure installation was successful.

    python3 -c 'import labelme; print(labelme); print(labelme.__version__)'
    

    Untitled