Simple Ubuntu 22.04 install authored by Alan De Smet's avatar Alan De Smet
......@@ -178,4 +178,25 @@ cd ../..
At this point glance can be run as `glance/venv/bin/glance`
Minimal Development Install for Ubuntu 22.04 (Using root)
=========================================================
(Verified on 2022-09-29 by Alan De Smet on the ubuntu:22.04 docker image)
```
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pyqt5
```
```
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential python3-numpy python3-matplotlib python3-mako python3-mock python3-scipy python3-pil python3-cartopy python3-pil python3-netcdf4 python3-h5py libgeos-dev python3-venv python3.10-venv python3-setuptools-whl python3-pip-whl git
git clone https://gitlab.ssec.wisc.edu/evas/UW-Glance.git glance
cd glance
python3 -mvenv --system-site-packages venv
. venv/bin/activate
cd pyglance
python3 setup.py develop
deactivate
cd ../..
```
At this point glance can be run as `glance/venv/bin/glance`