Skip to content
Snippets Groups Projects
Commit c569d444 authored by Boris Basic's avatar Boris Basic
Browse files

Allow wheels installation when the batch is executed outside the repo

parent 81a6c93c
No related branches found
No related tags found
No related merge requests found
...@@ -295,10 +295,10 @@ echo Installing Python requirements... ...@@ -295,10 +295,10 @@ echo Installing Python requirements...
pip install -r %~dp0requirements.txt || goto install_error pip install -r %~dp0requirements.txt || goto install_error
rem Use GDAL, Fiona, Rasterio and Shapely unofficial wheels, to avoid building them locally rem Use GDAL, Fiona, Rasterio and Shapely unofficial wheels, to avoid building them locally
pip install wheels\%gdal% pip install %~dp0wheels\%gdal%
pip install wheels\%fiona% pip install %~dp0wheels\%fiona%
pip install wheels\%rasterio% pip install %~dp0wheels\%rasterio%
pip install wheels\%shapely% pip install %~dp0wheels\%shapely%
pip install geopandas pip install geopandas
popd popd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment