diff --git a/build-env.sh b/build-env.sh
index 6298fbe7ebd6d80062c58834f8555a3fddc0276e..5b1de5b56c3f35be3b5a3fd6a2a436e06a60b125 100644
--- a/build-env.sh
+++ b/build-env.sh
@@ -3,15 +3,17 @@
 # source activate base
 basedir=$( cd "$(dirname "$0")" ; pwd -P)
 echo installing environment...
-# 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
+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 .
+echo trying to install maap-py...
+source activate osgeo-env
+git clone --single-branch --branch v3.0.1 https://github.com/MAAP-Project/maap-py.git
+cd maap-py
+pip install -e .
+echo installed maap-py package!