From 221aea4830fda847ff6a1941aefba8c59797c865 Mon Sep 17 00:00:00 2001 From: Youjia Li Date: Tue, 10 Sep 2024 23:59:06 -0500 Subject: [PATCH] modify installation guide --- docs/source/installation/install.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/installation/install.rst b/docs/source/installation/install.rst index 91304a8..0b9d954 100644 --- a/docs/source/installation/install.rst +++ b/docs/source/installation/install.rst @@ -13,10 +13,10 @@ Install from Source ============================================ Software Requirements - - PnetCDF C library + - PnetCDF C library (built with shared libraries) and MPI C library - Python 3.9 or later - Python libraries: numpy, mpi4py - - Python libraries: Cython, setuptools (optional, for building from source) + - Python libraries: Cython, setuptools, packaging, wheel (for building from source) Building PnetCDF C library .. code-block:: bash @@ -45,11 +45,11 @@ Building PnetCDF-python from source # install Python libraries $ pip install numpy Cython - $ env CC=/path/to/mpicc pip install mpi4py + $ CC=/path/to/mpicc pip install mpi4py # download PnetCDF-python source code $ git clone git@github.com:Parallel-NetCDF/PnetCDF-Python.git $ cd PnetCDF-Python # install PnetCDF-python - env CC=/path/to/mpicc PNETCDF_DIR=/path/to/pnetcdf/dir/ pip install --no-build-isolation -e . + CC=/path/to/mpicc PNETCDF_DIR=/path/to/pnetcdf/dir/ pip install --no-build-isolation -e .