removed numpy instalation in windows

This commit is contained in:
Axel 2021-06-10 15:08:18 +02:00 committed by bernat
parent 7d637137b4
commit c88e5b780d
1 changed files with 1 additions and 4 deletions

View File

@ -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...