-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |