diff --git a/build-env.sh b/build-env.sh index cbb877f2ee9642fb868d29a49d9b9d15de619ca9..6298fbe7ebd6d80062c58834f8555a3fddc0276e 100644 --- a/build-env.sh +++ b/build-env.sh @@ -3,10 +3,15 @@ # source activate base basedir=$( cd "$(dirname "$0")" ; pwd -P) echo installing environment... -mamba env create -f ${basedir}/environment.yml +# mamba env create -f ${basedir}/environment.yml +conda create --name osgeo-env --clone base +source activate osgeo-env +mamba install -c conda-forge scipy -y +mamba install -c conda-forge h5py -y +mamba install -c conda-forge geopandas -y # Install the maap.py environment -source activate osgeo-env -git clone --single-branch --branch v3.0.1 https://github.com/MAAP-Project/maap-py.git ${basedir} -cd ${basedir}/maap-py -pip install -e . +# source activate osgeo-env +# git clone --single-branch --branch v3.0.1 https://github.com/MAAP-Project/maap-py.git ${basedir} +# cd ${basedir}/maap-py +# pip install -e .