diff --git a/SetupDeveloperPC.bat b/SetupDeveloperPC.bat index aa72702..116c20c 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 1b5ae60..e330f9d 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 d223da2..1f13062 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