AFNI for Ubunutu 18.04

Dear AFNI developers,

I managed to install AFNI on Ubuntu 18.04. Some workarounds were needed.

  1. packages
    The following packages needed to be installed.
    $ sudo apt install libcurl4-openssl-dev libxml2-dev libssl-dev libgfortran3

  2. symbolic link for libgsl.so.19
    lbgsl.so.19 is no longer provided. libgsl.so.23 is found, so I made a symbolic link to this.
    $ sudo ln -s /usr/lib/x86_64-linux-gnu/libgsl.so.23 /usr/lib/x86_64-linux-gnu/libgsl.so.19

  3. R
    R is now available from official repository. So @add_rcran_ubuntu.tcsh is not necessary.
    I just did
    $sudo apt install r-base-dev r-cran-rmpi

That’s it.

Best regards,
Kiyotaka

Hi, Kiyotaka–

Great, thanks. At some point in the near future we will finalize build instructions, likely incorporating this-- thanks for sorting this out.

–pt

Thank you for the reply. This is a tiny thing, but a way to show my respect to you all. Thank you so much for developing such a nice tool.

Kiyotaka