From 14eb1b779612311e131978a1dae9c9b8b4c9aac7 Mon Sep 17 00:00:00 2001 From: Paht J Date: Tue, 18 Jun 2024 09:09:21 -0400 Subject: [PATCH] Create readme.md --- python/examples/metis-block-graph/readme.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 python/examples/metis-block-graph/readme.md diff --git a/python/examples/metis-block-graph/readme.md b/python/examples/metis-block-graph/readme.md new file mode 100644 index 0000000..3a891fb --- /dev/null +++ b/python/examples/metis-block-graph/readme.md @@ -0,0 +1,18 @@ +# Using Plot3D and Metis + +## Installing Metis +Metis needs to be installed and configured as part of your METIS_DLL or LD_LIBRARY path + +1. Download Metis http://glaros.dtc.umn.edu/gkhome/metis/metis/download +2. Follow the compiling instructions + +Add to your profile +```bash + # metis + export PATH="/home/[username]/metis:$PATH" + export LD_LIBRARY_PATH="/home/[username]/metis:$LD_LIBRARY_PATH" +``` + +3. Install metis python library `pip install metis` + +Now you are ready to run the test code.