Show the commands using triple back-tick

This commit is contained in:
Shahram Najm 2019-05-16 12:33:59 +01:00
parent 72edd846f2
commit 7e1d205b00
1 changed files with 15 additions and 8 deletions

View File

@ -29,21 +29,28 @@ INSTALLATION
1. Download ecCodes from https://software.ecmwf.int/wiki/display/ECC/Releases
2. Unpack distribution:
> tar -xzf eccodes-x.y.z-Source.tar.gz
```
tar -xzf eccodes-x.y.z-Source.tar.gz
```
3. Create a separate directory where to build ecCodes:
> mkdir build
> cd build
```
mkdir build
cd build
```
4. Run cmake pointing to the source and specify the installation location:
> cmake ../eccodes-x.y.z-Source -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
```
cmake ../eccodes-x.y.z-Source -DCMAKE_INSTALL_PREFIX=/path/to/where/you/install/eccodes
```
It is strongly recommended that you install into a clean directory
5. Compile, test and install:
> make
> ctest
> make install
```
make
ctest
make install
```
For more details, please see: