I am running ROS 2 Humble in Docker on Raspberry Pi 5, and want to uninstall the pipeline_graph tool from /home/pi/.local/bin

(Per the repo instructions) I installed with:

pi@GoPi5Go:DOCKER:~/GoPi5Go/ros2ws $ pip install git+https://github.com/luxonis/depthai_pipeline_graph.git
...
  WARNING: The script pipeline_graph is installed in '/home/pi/.local/bin' which is not on PATH.
  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed Qt.py-1.3.10 depthai-pipeline-graph-0.0.5 types-PySide2-5.15.2.1.7

Is this the correct way to remove it from /home/pi/.local/bin?

pip uninstall depthai-pipeline-graph
pip uninstall Qt.py
pip uninstall types-pyside2

    cycob
    Yep. That or pip-autoremove depthai-pipeline-graph -y might work as well if any orphaned dependencies are left.
    Pip uninstall should probably suffice.

    Thanks,
    Jaka