From 3af1ed62ba66585ff764587a629c564a18bda888 Mon Sep 17 00:00:00 2001 From: Michael Carlstrom Date: Tue, 13 Feb 2024 23:53:03 -0500 Subject: [PATCH] clean up python independencies --- .vscode/install_dependencies.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.vscode/install_dependencies.sh b/.vscode/install_dependencies.sh index ceb91511..3cf12038 100755 --- a/.vscode/install_dependencies.sh +++ b/.vscode/install_dependencies.sh @@ -10,10 +10,8 @@ sudo apt-get update -y # Deletes ROS build directories rm -rf build install log -# Crazy one liner for install python dependencies -for d in src/pi/*/ src/surface/*/; do pip install -e "$d"; done -# Delete generated files -rm -rf $(find . | grep .egg-info) +# Install python dependencies +pip install . # Install some random package that PyQt requires sudo apt-get install libxcb-cursor0 -y \ No newline at end of file