| 26 | Download and unpack the distribution file into the deployment directory (e.g. `$HOME` directory). |
| 27 | {{{ |
| 28 | #!sh |
| 29 | [user@localhost ~]$ cd |
| 30 | [user@localhost ~]$ wget http://www.meteo.unican.es/work/WRF4G.tar.gz |
| 31 | [user@localhost ~]$ tar xzvf WRF4G.tar.gz |
| 32 | }}} |
| 33 | Setup the WRF4G environment. |
| 34 | {{{ |
| 35 | #!sh |
| 36 | [user@localhost ~]$ export PATH=$HOME/WRF4G/bin:$PATH |
| 37 | }}} |
| 38 | In order to avoid typing the export command every time you open a terminal, you should copy it into `$HOME/.bashrc`. |
| 39 | {{{ |
| 40 | #!sh |
| 41 | [user@localhost ~]$ echo "export PATH=$HOME/WRF4G/bin:$PATH" >> $HOME/.bashrc |
| 42 | }}} |
| 43 | |