$ cd $MYSOFTWARE # This path defaults to /software/projects/<user_project>/<username>/
# Load the required modules. Note that the specific version numbers may change
$ module load python/3.10.810
$ module load py-pip/2223.21.2-py3.10.810
# Create and activate the virtual environment
$ python -m venv pangeo
$ source ${MYSOFTWARE}/pangeo/bin/activate
# Install Pangeo, Dask, and dependencies
$ pip install dask-mpi dask distributed mpi4py jupyter-server-proxy jupyterlab ipywidgets xarray zarr numcodecs hvplot geoviews datashader widgetsnbextension dask-jobqueue dask-labextension notebook wheel netCDF4 pyFFTW basemap geos nodejs-bin
# Clean your pip cache to prevent exceeding your file count quota on the /software partition
$ pip cache purge |