Installing MED
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following command to decompress the MED installation package:
tar -zxvf med-4.0.0.tar.gz
- Run the following command to switch to the directory generated after decompression:
cd med-4.0.0
- Run the following command to configure MED:
./configure --prefix=/path/to/MED --with-hdf5=/path/to/HDF5 --disable-python
- Run the following commands to compile and install MED:
make -j make install
- Run the following commands to set the MED environment variables:
export PATH=/path/to/MED/bin:$PATH export LD_LIBRARY_PATH=/path/to/MED/lib:$LD_LIBRARY_PATH
Parent topic: Configuring the Compilation Environment