From 3906bc03183ed6c4feeb94f6d1307e9b408a3a14 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Tue, 6 Feb 2024 21:05:14 +0300 Subject: [PATCH] Install pip using apt --- builder/image-build-ros.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builder/image-build-ros.sh b/builder/image-build-ros.sh index b2b0d0cf..721202ad 100755 --- a/builder/image-build-ros.sh +++ b/builder/image-build-ros.sh @@ -28,11 +28,11 @@ echo "=== Building ROS from scratch" cp /etc/apt/trusted.gpg /etc/apt/trusted.gpg.d # https://askubuntu.com/a/1408456 apt-get update -apt-get install -y python3-distutils build-essential git # python3-vcstool +apt-get install -y python3-distutils build-essential git python3-pip # python3-vcstool # install vcstool using pip -curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py && rm get-pip.py -pip3 install -U --break-system-packages vcstool rosdep rosinstall-generator +# curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py && rm get-pip.py +pip3 install -U vcstool rosdep rosinstall-generator # sudo rosdep init rm /etc/ros/rosdep/sources.list.d/20-default.list