From 001af5130a5da11b38243d4927a8dfd112f7fb64 Mon Sep 17 00:00:00 2001 From: ibrahim Date: Sun, 3 Nov 2024 13:48:49 +0000 Subject: [PATCH] Remove pip cache once all packages are installed to free up space --- .devcontainer/scripts/install_external_ros_packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/scripts/install_external_ros_packages.sh b/.devcontainer/scripts/install_external_ros_packages.sh index 989dcc4..787f45d 100755 --- a/.devcontainer/scripts/install_external_ros_packages.sh +++ b/.devcontainer/scripts/install_external_ros_packages.sh @@ -23,6 +23,6 @@ vcs import < ${WS}/src/repos/external.repos rosdep install -r -y -i --from-paths . # Install Python dependencies for the ultralytics_ros package -python3 -m pip install -r ultralytics_ros/requirements.txt +python3 -m pip install -no-cache-dir -r ultralytics_ros/requirements.txt echo "Setup complete."