├── .gitignore ├── README.md └── installations.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JupyterLab-environment-test 2 | Testing JupyterLab installations 3 | -------------------------------------------------------------------------------- /installations.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd /home/jovyan/work 4 | # git reflog requires a name and email if user is not in passwd 5 | # even if you're only cloning 6 | export GIT_COMMITTER_NAME=anonymous 7 | export GIT_COMMITTER_EMAIL=anon@localhost 8 | 9 | # Configure 10 | git clone https://github.com/geo-python/JupyterLab-environment-test.git 11 | 12 | pip install geopandas 13 | 14 | # Install geopandas using conda 15 | conda install -y -c conda-forge shapely --------------------------------------------------------------------------------