Skip to content

installation on RedHat CentOS

mattben edited this page Sep 8, 2014 · 32 revisions

###Supporting RedHat6 / CentOS6 Current Stable Release 1.5


##We strongly suggest installing from binaries


###System Requirements You must be Root You must have access to the EPEL Repos help link

sudo yum install cmake cmake-gui wget libpng-devel libxml2-devel libxslt-devel xorg* sqlite-devel bzip2 gdbm-devel libXt-devel openssl-devel gcc-gfortran libgfortran tcl-devel tk-devel libdbi-devel libicu-devel libXi-devel mesa-libGLU-devel mesa-libGL-devel 

Installing Qt

wget --no-check-certificate Qt-URL-from-above
tar xvjf qt-YOUR-VERSION-4.8.4.tar.bz2

##Installing the Binaries You must be Root From a bash shell

cd /
wget --no-check-certificate http://sourceforge.net/projects/cdat/files/Releases/UV-CDAT/1.5/UV-CDAT-1.5.1-RedHat6-64bit.tar.bz2
tar xvjf UV-CDAT-1.5.1-RedHat6-64bit.tar.bz2
source /usr/local/uvcdat/1.5.1/bin/setup_runtime.sh

Now add source /usr/local/uvcdat/1.5.1/bin/setup_runtime.sh to the bottom of your ~/.bashrc file #####Skip to Running UV-CDAT GUI


##Building from Source ###Building & Install Any User (root not required)

From the command line using bash shell

export GIT_SSL_NO_VERIFY=1
cd ~/
git clone git://github.com/UV-CDAT/uvcdat.git
mkdir build-uvcdat
cd build-uvcdat
ccmake ../uvcdat
make
source /path/to/install/bin/setup_runtime.sh

Now add source /path/to/install/bin/setup_runtime.sh to the bottom of your ~/.bashrc file


###Testing Running the test suite

cd ~/uvcdat-build
ctest

To post the results to the UV-CDAT Dashboard

ctest -D Experimental

To only test VCS

ctest -VVV

###Running UV-CDAT GUI

uvcdat

alt text

Need help, view our tutorials

Clone this wiki locally