From a1d6b908945a33d6265fe05b815811f8de35c3f9 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Fri, 11 Aug 2023 12:22:49 -0700 Subject: [PATCH] add instruction for parallel mfem installation. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 9f867b7..b29a4e4 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,17 @@ For serial version of `PyMFEM`, the following simple `pip` command works: ``` pip install mfem ``` +For parallel version, a manual installation is required: +``` +git clone https://github.com/mfem/PyMFEM.git +cd PyMFEM +python3 setup.py install --with-parallel +``` +On LC quartz, use `--user` flag: +``` +python3 setup.py install --with-parallel --user +``` +Make sure [`swig`](https://pypi.org/project/swig) is installed first. Also, the binary file must be located in `PATH` environment variable. ## License