Update installation authored by Alan De Smet's avatar Alan De Smet
...@@ -57,7 +57,7 @@ Development Install Using Anaconda ...@@ -57,7 +57,7 @@ Development Install Using Anaconda
This installs a dedicated Anaconda install for Glance's use. This installs a dedicated Anaconda install for Glance's use.
Tested on Ubuntu 18.04 on 2020-08-21 Tested on Ubuntu 22.04 on 2022-09-26
``` ```
cd $INSTALL_DIR # Whatever location you want cd $INSTALL_DIR # Whatever location you want
...@@ -68,9 +68,11 @@ sh Miniconda3-latest-Linux-x86_64.sh -b -p "`pwd`/anaconda" ...@@ -68,9 +68,11 @@ sh Miniconda3-latest-Linux-x86_64.sh -b -p "`pwd`/anaconda"
source anaconda/bin/activate source anaconda/bin/activate
# You can omit some or all of these for file formats you don't need to read # You can omit some or all of these for file formats you don't need to read
conda install -y netcdf4 h5py conda install -y netcdf4 h5py
conda install -y pyqt
conda install -y -c conda-forge pyhdf gdal conda install -y -c conda-forge pyhdf gdal
cd pyglance/ cd pyglance/
python setup.py develop python setup.py develop
conda deactivate
cd ../.. cd ../..
``` ```
... ...
......