Skip to content

Latest commit

 

History

History
47 lines (35 loc) · 1004 Bytes

INSTALL.md

File metadata and controls

47 lines (35 loc) · 1004 Bytes

Installation instructions

Note: These instructions are intended for use with Linux systems.

  1. Install anaconda

  2. Create a new conda environment:

(base) $ conda create --name geospatial python=3.9
  1. Activate geospatial environment:
(base) $ conda activate geospatial
  1. Install conda dependencies:
(geospatial) $ conda install -c conda-forge pdal python-pdal gdal
  1. Install python dependencies:
(geospatial) $ pip install -r requirements.txt
  1. Install conda kernel for jupyter lab:
(geospatial) $ ipython kernel install --user --name=cloudbutton-geospatial
  1. Start jupyter lab:
(geospatial) $ jupyter lab
  1. Select the geospatial environment kernel created:

jupyter kernel selection

  • To activate the geospatial conda environment in a new session:
$ source ~/anaconda3/bin/activate
(base) $ conda activate geospatial
(geospatial) $ jupyter lab