File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,12 @@ scalable I/O performance.
15
15
* MPI C library and Python package, [ mpi4py] ( https://mpi4py.readthedocs.io/en/stable/install.html ) .
16
16
* [ PnetCDF C library] ( https://github.com/Parallel-netCDF/PnetCDF ) , built with shared libraries.
17
17
18
+ ### Quick Installation
19
+ * Make sure have a working MPI and pnetcdf-C software and then use pip to install pnetcdf-Python library from PyPI
20
+ ```
21
+ CC=/path/to/mpicc PNETCDF_DIR=/path/to/pnetcdf/dir/ pip install pnetcdf
22
+ ```
23
+
18
24
### Developer Installation
19
25
* Clone this GitHub repository
20
26
* Required software for developer installation:
Original file line number Diff line number Diff line change @@ -6,8 +6,12 @@ Installation
6
6
Quick Install
7
7
===================================
8
8
9
- Quick installation via pip install is currently unavailable as this library has not yet been uploaded to PyPI.
10
- Please follow building from source instructions provided below to set up the library.
9
+ Software Requirements
10
+ - PnetCDF C library (built with shared libraries) and MPI C library
11
+
12
+ Make sure have a working MPI and pnetcdf-C software and then use pip to install pnetcdf-Python library from PyPI
13
+ .. code-block :: bash
14
+ $ CC=/path/to/mpicc PNETCDF_DIR=/path/to/pnetcdf/dir/ pip install pnetcdf
11
15
12
16
Install from Source
13
17
============================================
You can’t perform that action at this time.
0 commit comments