forked from blaylockbk/goes2go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment-test.yml
50 lines (43 loc) · 1.01 KB
/
environment-test.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
## Used to test goes2go install from PyPI
name: goes2go-test
channels:
- conda-forge
dependencies:
- python>=3.10
- pip
#==============
# Dependencies
#==============
- cartopy>=0.20.3
- matplotlib>=3.5.3
- metpy
- numpy
- pandas
- requests
- s3fs
- toml
- xarray>=2022.6.0
#====================
# Other Dependencies
#====================
- geos # required by cartopy
- proj # required by cartopy
- pip:
- goes2go
###############################################################################
## Note to self:
## Make sure goes2go is not in my PYTHONPATH or PATH before install.
# To create this environment
#
# wget https://github.com/blaylockbk/goes2go/raw/main/environment-test.yml
# conda env create -f environment-test.yml
#
# To update this environment
#
# conda env update -f environment-test.yml --prune
#
# To remove this environment
#
# conda env remove --name goes2go-test
#
###############################################################################