Skip to content

Commit 3ead904

Browse files
committed
Add note for Windows installation. ESMPy is not installable on Windows.
1 parent 89cfe78 commit 3ead904

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,15 @@ Clone this repository so you have all the notebooks and data files to work with:
4545
$ git clone https://github.com/JiaweiZhuang/GEOSChem-python-tutorial.git
4646
```
4747

48-
Install required packages to an isolated environment (which allows you to manage different versions of packages without affecting each other):
48+
Install required packages into an isolated environment (which allows you to manage different versions of packages without affecting each other):
4949

5050
```
5151
$ conda env create -vv -n geo -f geoschem-python-tutorial/environment.yml
5252
$ source activate geo
5353
```
5454

55+
**Windows users** should use [environment_windows.yml](./environment_windows.yml) instead.
56+
5557
You can use a different name other than `geo` for the environment. `-vv` prints more message so the installation won't look like getting stuck.
5658

5759
Finally, start the Jupyter program

environment_windows.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
channels:
2+
- defaults
3+
- conda-forge
4+
dependencies:
5+
- python=3.6 # Python version 3.6
6+
- cython # Python <-> C interfacing
7+
- cartopy # Geographic plotting toolkit
8+
- dask # Parallel processing library
9+
- jupyter # Jupyter federation architecture
10+
- jupyterlab # next-generation Jupyter
11+
- matplotlib # 2D plotting library
12+
- netcdf4 # netcdf4 Python API, backend for xarray
13+
- scipy # Common math/stats/science functions
14+
- scikit-learn # Machine learning library
15+
- seaborn # Statistical visualizations
16+
- xarray # the major tool to work with NetCDF data
17+
- xbpch # Interface for bpch output files

0 commit comments

Comments
 (0)