AFNI Message Board

Dear AFNI users-

We are very pleased to announce that the new AFNI Message Board framework is up! Please join us at:

https://discuss.afni.nimh.nih.gov

Existing user accounts have been migrated, so returning users can login by requesting a password reset. New users can create accounts, as well, through a standard account creation process. Please note that these setup emails might initially go to spam folders (esp. for NIH users!), so please check those locations in the beginning.

The current Message Board discussion threads have been migrated to the new framework. The current Message Board will remain visible, but read-only, for a little while.

Sincerely, AFNI HQ

History of AFNI updates  

|
May 20, 2016 10:03AM
neurodebian for ubuntu 16.04 doesn't have afni yet.
AFNI gui requires libxp which is also absent from the repos.

Quote
afni
afni: error while loading shared libraries: libXp.so.6: cannot open shared object file: No such file or directory


Fortunately (and surprisingly) building libXp is straight forward.

The code below gets afni running albeit in a bit kludgey way.


# prereqs
sudo apt-get install git xutils-dev libtool libx11-dev x11proto-xext-dev x11proto-print-dev
# libxp source
git clone [cgit.freedesktop.org]
cd libXp

# make
./autogen.sh
configure
make
sudo make install

# add to library path
echo 'export LD_LIBRARY_PATH="/usr/local/lib/:$LD_LIBRARY_PATH"' >> ~/.bashrc
. ~/.bashrc

# afni gui works!
afni



Edited 3 time(s). Last edit at 05/20/2016 10:05AM by Will Foran.
Subject Author Posted

libXp on ubuntu 16.04

Will Foran May 20, 2016 10:03AM

Re: libXp on ubuntu 16.04

rick reynolds May 20, 2016 10:25AM

Re: libXp on ubuntu 16.04

josephdviviano May 20, 2016 05:39PM

Re: libXp on ubuntu 16.04

bzoltick May 23, 2016 04:34PM

Re: libXp on ubuntu 16.04

justbennet June 04, 2016 02:30PM

Re: libXp on ubuntu 16.04

rick reynolds June 04, 2016 10:07PM

Re: libXp on ubuntu 16.04

justbennet December 19, 2019 08:40AM

Re: libXp on ubuntu 16.04

rick reynolds December 19, 2019 09:04AM