forked from blaylockbk/Herbie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yml
70 lines (63 loc) · 1.73 KB
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: herbie
channels:
- conda-forge
dependencies:
- python>=3.11
- pip
- rclone # Not used by Herbie, useful if you are downloading data (https://rclone.org/)
- herbie-data
#==============
# Dependencies
#==============
- curl
- cartopy>=0.22
- cfgrib>=0.9.10.4
- dask
- eccodes
- geos
- matplotlib>=3.5.3
- metpy
- netcdf4
- numpy>=1.25
- pandas>=2.0
- pygrib>=2.1.4
- pylint
- pyproj>=3.6
- requests>=2.31
- s3fs
- scikit-learn
- toml
#- wgrib2 # ONLY AVAILABLE ON LINUX. Uncomment if you want this optional dependency.
- jupyter
- jupyterlab
- xarray>=2023.7
- zarr
- pip:
# Borrow some tools from my garage
- git+https://github.com/blaylockbk/Carpenter_Workshop.git
#==============================================================================
# Notes
#==============================================================================
# Being more specific with versions *may* help speed up conda
# creating/updating environments
# https://www.anaconda.com/blog/understanding-and-improving-condas-performance
# =============================================================================
# Conda Tips
# =============================================================================
# To create this environment
#
# curl -O https://raw.githubusercontent.com/blaylockbk/Herbie/main/environment.yml
# conda env create -f environment.yml
#
# To update this environment
#
# conda env update -f environment.yml --prune
#
# To remove this environment
#
# conda env remove --name herbie
#
# To do a conda clean
#
# conda clean -tp
# =============================================================================