Changes between Version 39 and Version 40 of DRM4G/Tutorial
- Timestamp:
- Jun 27, 2016 12:37:19 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DRM4G/Tutorial
v39 v40 8 8 = Start Guide = 9 9 10 In order to install DRM4G, an installation script is provided. Type the command below on your shell terminal: 11 12 {{{ 13 #!sh 14 $ wget --no-check-certificate -O- https://meteo.unican.es/work/DRM4G/install.sh | bash 10 In order to install DRM4G, download the installation script : 11 12 {{{ 13 #!sh 14 $ wget --no-check-certificate https://meteo.unican.es/work/DRM4G/install.sh 15 }}} 16 17 And then run it : 18 19 {{{ 20 #!sh 21 $ [user@mycomputer~]$ bash ./install.sh --dir $HOME 15 22 16 23 ========================== … … 24 31 --> Downloading drm4g-2.4.1.tar.gz ... 25 32 26 --> Unpacking drm4g-2.4.1.tar.gz in directory /home/ USER...33 --> Unpacking drm4g-2.4.1.tar.gz in directory /home/user ... 27 34 28 35 --> Installing DRM4G python requirements locally ... … … 35 42 environment with the command: 36 43 37 . /home/ USER/drm4g/bin/drm4g_init.sh44 . /home/user/drm4g/bin/drm4g_init.sh 38 45 39 46 You need to run the above command on every new shell you 40 47 open before using DRM4G, but just once per session. 41 48 }}} 42 43 By default, it will install DRM4G on your current directory. But, you can download the installation script:44 45 {{{46 #!sh47 $ wget --no-check-certificate https://meteo.unican.es/work/DRM4G/install.sh48 }}}49 50 And run it manually:51 {{{52 #!sh53 $ bash ./install.sh [options]54 }}}55 The options available are:56 57 * -d, --dir DIRECTORY: Install DRM4G into a directory.58 * -V, --version: Version to install.59 * -h, --help: Print help text.60 61 49 = My first job = 62 50