workaround for numpy version issue authored by Eva Schiffer's avatar Eva Schiffer
...@@ -18,7 +18,7 @@ If you are working on the SSEC servers there may be a pre-installed version of M ...@@ -18,7 +18,7 @@ If you are working on the SSEC servers there may be a pre-installed version of M
Once you have MambaForge installed, run the following commands on the command line: Once you have MambaForge installed, run the following commands on the command line:
mamba create -n glance_user python=3.11 numpy matplotlib mako mock scipy pillow cartopy pyqt netcdf4 h5py pip mamba create -n glance_user python=3.11 'numpy<2.0' matplotlib mako mock scipy pillow cartopy pyqt netcdf4 h5py pip
mamba activate glance_user mamba activate glance_user
pip install -v --extra-index-url https://larch.ssec.wisc.edu/eggs/repos uwglance pip install -v --extra-index-url https://larch.ssec.wisc.edu/eggs/repos uwglance
...@@ -35,7 +35,7 @@ If you need a **developer installation** of Glance, you will follow similar inst ...@@ -35,7 +35,7 @@ If you need a **developer installation** of Glance, you will follow similar inst
Use the following installation instructions instead: Use the following installation instructions instead:
mamba create -n glance python=3.11 numpy matplotlib mako mock scipy pillow cartopy pyqt netcdf4 h5py pip build mamba create -n glance python=3.11 'numpy<2.0' matplotlib mako mock scipy pillow cartopy pyqt netcdf4 h5py pip build
mamba activate glance mamba activate glance
(cd to the directory where you want the Glance code installed) (cd to the directory where you want the Glance code installed)
git clone git@gitlab.ssec.wisc.edu:evas/UW-Glance.git git clone git@gitlab.ssec.wisc.edu:evas/UW-Glance.git
... ...
......