From 2c8a07b352200040a17913d72a6c1fa6d1f80579 Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Thu, 16 Jan 2025 22:08:20 +0100 Subject: [PATCH] IMPROVEMENT: Improve the developer installation consistency --- SetupDeveloperPC.bat | 2 +- install_macos.sh | 2 +- install_windows.bat | 2 +- wsl_install.bash => install_wsl.bash | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename wsl_install.bash => install_wsl.bash (100%) diff --git a/SetupDeveloperPC.bat b/SetupDeveloperPC.bat index aa727028..116c20c7 100644 --- a/SetupDeveloperPC.bat +++ b/SetupDeveloperPC.bat @@ -75,7 +75,7 @@ goto :eof :ConfigurePreCommit echo Installing pre-commit tools into the Ubuntu running inside WSL2... -wsl --exec bash -c "./wsl_install.bash" +wsl --exec bash -c "./install_wsl.bash" echo Setting pre-commit... pip3 install pre-commit pre-commit install diff --git a/install_macos.sh b/install_macos.sh index 1b5ae602..e330f9d1 100755 --- a/install_macos.sh +++ b/install_macos.sh @@ -13,7 +13,7 @@ source .venv/bin/activate python3 -m pip uninstall -y serial pyserial # Install the project dependencies -python3 -m pip install . +python3 -m pip install -e .[dev] echo "Installation complete." echo "" diff --git a/install_windows.bat b/install_windows.bat index d223da2c..1f13062d 100644 --- a/install_windows.bat +++ b/install_windows.bat @@ -24,7 +24,7 @@ echo python serial has been successfully uninstalled. echo. rem Install all dependencies defined in setup.py -python3 -m pip install -e . +python3 -m pip install -e .[dev] echo. echo To run the ArduPilot methodic configurator GUI, execute the following command: diff --git a/wsl_install.bash b/install_wsl.bash similarity index 100% rename from wsl_install.bash rename to install_wsl.bash