From c88e5b780d5ba07511068b3f23052d77a96f7337 Mon Sep 17 00:00:00 2001 From: Axel Date: Thu, 10 Jun 2021 15:08:18 +0200 Subject: [PATCH] removed numpy instalation in windows --- Util/InstallersWin/install_boost.bat | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Util/InstallersWin/install_boost.bat b/Util/InstallersWin/install_boost.bat index 1f436b147..6e6f7fdd8 100644 --- a/Util/InstallersWin/install_boost.bat +++ b/Util/InstallersWin/install_boost.bat @@ -90,7 +90,7 @@ if not exist "%BOOST_SRC_DIR%" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('%BOOST_REPO%', '%BOOST_TEMP_FILE_DIR%')" ) if not exist "%BOOST_TEMP_FILE_DIR%" ( - echo %FILE_N% Using Boost backup + echo %FILE_N% Using Boost backup powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://carla-releases.s3.eu-west-3.amazonaws.com/Backup/%BOOST_TEMP_FILE%', '%BOOST_TEMP_FILE_DIR%')" ) if %errorlevel% neq 0 goto error_download @@ -107,9 +107,6 @@ if not exist "%BOOST_SRC_DIR%" ( echo %FILE_N% Not downloading boost because already exists the folder "%BOOST_SRC_DIR%". ) -rem Workarround to make sure numpy is installed in python -python -m pip install numpy - cd "%BOOST_SRC_DIR%" if not exist "b2.exe" ( echo %FILE_N% Generating build...