diff --git a/build-env.sh b/build-env.sh index b41f2ff571b0d5e28ceb20a8a54e6ce2422a6983..cbb877f2ee9642fb868d29a49d9b9d15de619ca9 100644 --- a/build-env.sh +++ b/build-env.sh @@ -2,12 +2,11 @@ # source activate base basedir=$( cd "$(dirname "$0")" ; pwd -P) -conda env list echo installing environment... -conda env create -f ${basedir}/environment.yml +mamba env create -f ${basedir}/environment.yml # Install the maap.py environment -conda activate osgeo-env +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 . diff --git a/notebooks/run-gedi-biomass.ipynb b/notebooks/run-gedi-biomass.ipynb index 662b2dbd71c5703bf411d469f4c4f0cc038a6463..750f834a81b15030a279e2fc9d1a58b27ceddcf3 100644 --- a/notebooks/run-gedi-biomass.ipynb +++ b/notebooks/run-gedi-biomass.ipynb @@ -197,9 +197,9 @@ ], "metadata": { "kernelspec": { - "display_name": "osgeo-env-v1", + "display_name": "Python 3 (ipykernel)", "language": "python", - "name": "osgeo-env-v1" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -211,7 +211,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.4" + "version": "3.10.8" } }, "nbformat": 4, diff --git a/run.sh b/run.sh index 265d70beea21bbaf208d27f593e637031bc42664..623a043937eea17025f1c91e00edd111fabf06b3 100644 --- a/run.sh +++ b/run.sh @@ -4,7 +4,7 @@ basedir=$( cd "$(dirname "$0")" ; pwd -P) # Activate environment that was created in the builed-env.sh file -source activate osgeo-env-v1 +source activate osgeo-env # Create output dir OUTPUTDIR="${PWD}/output"