-
Notifications
You must be signed in to change notification settings - Fork 8
Installation
José Gómez-Dans edited this page Mar 18, 2022
·
1 revision
-
Install Anaconda: https://docs.anaconda.com/anaconda/install/index.html
-
Download the repository:
git clone https://github.com/UCL-EO/Workshop2022.git
- Install packages:
cd Workshop2022/
conda env create -n uclnceo --force -f environment.yml
- Enable extensions
#!/bin/bash
# activate uclnceo envrionment
conda activate uclnceo
jupyter serverextension enable --py nbgitpuller --sys-prefix
jupyter contrib nbextension install --user
jupyter nbextension enable --py widgetsnbextension
jupyter nbextension enable python-markdown/main
# Install a JupyterLab extension for demonstration purposes
jupyter labextension install @jupyterlab/geojson-extension
jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter labextension install jupyter-leaflet
jupyter trust notebooks/*.ipynb *.ipynb
# kernel setup
python -m ipykernel install --name=conda-env-uclnceo --display-name 'conda env:uclnceo' --user
- Run
jupyter-lab
and load the notebooks.