From cb63013860c660aeafe7ddd336163d88df5e9fac Mon Sep 17 00:00:00 2001 From: Daisuke Sato Date: Mon, 6 Mar 2023 22:33:21 +0900 Subject: [PATCH] Fix setuptools installation 58.3.0 or newer setuptools have deprecated setup.py. https://setuptools.pypa.io/en/latest/history.html#v58-3-0 We still need to use the old version: https://github.com/colcon/colcon-core/issues/454#issuecomment-1262592774 --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 8fa7555..21958d1 100755 --- a/install.sh +++ b/install.sh @@ -50,6 +50,7 @@ sudo sed -i "s|BASEDIR|$BASEDIR|" /usr/bin/battery_monitor cd /tmp wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py sudo python get-pip.py +sudo pip install setuptools==58.2.0 # temporary fix https://github.com/mangdangroboticsclub/mini_pupper_ros/pull/45#discussion_r1104759104 ### Install Python module sudo apt install -y python3-dev