Hi! I was having a lot of issues getting tethys and gcamreader to work on both Windows and Linux using Anaconda, but I finally managed to get it working using the following environment specification (with python 3.9) so figured I'd share it for anyone else having issues. Tested on Windows 11 and Ubuntu 22.04.5 (using WSL). On Windows, make sure Java is installed (I used Java 24.0.1).
Just save the following text as an environment.yml file and create it in conda using conda env create -f environment.yml (also make sure to add conda-forge to channels: conda config --add channels conda-forge).
name: tethys
channels:
- defaults
- https://repo.anaconda.com/pkgs/main
- https://repo.anaconda.com/pkgs/r
- https://repo.anaconda.com/pkgs/msys2
- conda-forge
dependencies:
- bzip2=1.0.8
- ca-certificates=2025.2.25
- expat=2.7.1
- libffi=3.4.4
- openssl=3.0.16
- openjdk=21.0.6
- pip=25.1
- python=3.9.23
- setuptools=78.1.1
- sqlite=3.45.3
- tk=8.6.14
- wheel=0.45.1
- xz=5.6.4
- zlib=1.2.13
- pip:
- affine==2.4.0
- attrs==25.3.0
- bleach==6.2.0
- bokeh==3.4.3
- certifi==2025.6.15
- cftime==1.6.4.post1
- chardet==3.0.4
- click==8.1.8
- click-default-group==1.2.4
- click-default-group-wheel==1.2.3
- click-plugins==1.1.1
- cligj==0.7.2
- cloudpickle==3.1.1
- colorama==0.4.6
- colorcet==3.1.0
- contourpy==1.3.0
- cycler==0.12.1
- dask==2024.8.0
- dask-expr==1.1.10
- dask-geopandas==0.4.2
- distributed==2024.8.0
- fonttools==4.58.4
- fsspec==2025.5.1
- gcamreader==1.4.0
- geopandas==1.0.1
- holoviews==1.20.2
- hvplot==0.11.3
- idna==2.7
- importlib-metadata==8.7.0
- importlib-resources==6.5.2
- jinja2==3.1.6
- kiwisolver==1.4.7
- linkify-it-py==2.0.3
- locket==1.0.0
- lxml==5.4.0
- lz4==4.4.4
- markdown==3.8
- markdown-it-py==3.0.0
- markupsafe==3.0.2
- matplotlib==3.9.4
- mdit-py-plugins==0.4.2
- mdurl==0.1.2
- msgpack==1.1.1
- netcdf4==1.7.2
- numpy==2.0.2
- packaging==25.0
- pandas==2.3.0
- panel==1.4.5
- param==2.2.1
- partd==1.4.2
- pillow==11.2.1
- psutil==7.0.0
- pyarrow==20.0.0
- pyarrow-hotfix==0.7
- pyogrio==0.11.0
- pyparsing==3.2.3
- pyproj==3.6.1
- python-dateutil==2.9.0.post0
- pytz==2025.2
- pyviz-comms==3.0.5
- pyyaml==6.0.2
- rasterio==1.4.3
- requests==2.20.1
- rioxarray==0.15.0
- shapely==2.0.7
- six==1.17.0
- sortedcontainers==2.4.0
- tblib==3.1.0
- tethys-downscaling==2.1
- toolz==1.0.0
- tornado==6.5.1
- tqdm==4.67.1
- typing-extensions==4.14.0
- tzdata==2025.2
- uc-micro-py==1.0.3
- urllib3==1.24.3
- webencodings==0.5.1
- xarray==2024.7.0
- xyzservices==2025.4.0
- zict==3.0.0
- zipp==3.23.0
Hi! I was having a lot of issues getting tethys and gcamreader to work on both Windows and Linux using Anaconda, but I finally managed to get it working using the following environment specification (with python 3.9) so figured I'd share it for anyone else having issues. Tested on Windows 11 and Ubuntu 22.04.5 (using WSL). On Windows, make sure Java is installed (I used Java 24.0.1).
Just save the following text as an
environment.ymlfile and create it in conda usingconda env create -f environment.yml(also make sure to add conda-forge to channels:conda config --add channels conda-forge).