Compilation and Installation
Procedure
- Use PuTTY to log in to the server as the root user.
- Go to the main program installation directory.
cd /path/to/RELION
- Decompress the installation package.
tar -xvf 3.1.2.tar.gz
- Go to the directory generated after the decompression and create a build directory.
cd relion-3.1.2 mkdir build
- Perform the configuration.
yum install -y libtiff-* fltk* fltk-devel* yum -y install xorg-x11-xauth cd build export FFTW_HOME=/path/to/FFTW export FFTW_LIB=$FFTW_HOME/lib export FFTW_INCLUDE=$FFTW_HOME/include cmake -DBUILD_SHARED_LIBS=OFF -DCUDA=ON -DCudaTexture=ON -DCUDA_ARCH=80 -DCMAKE_BUILD_TYPE=release -DCMAKE_INSTALL_PREFIX=/path/to/install/RELION ..
- Perform the compilation.
make -j40 make -j40 install
- View the RELION version.
/path/to/install/RELION/bin/relion_refine_mpi --help

- Set the environment variables.
export PATH=/path/to/install/RELION/bin:$PATH
Parent topic: RELION 3.1.2 Porting Guide (CentOS 8.2)
