Relion update from 2.1 to 3.0

Install at your own risk. Exxact cannot support changes to installed OS/SW stack that was originally sold with your system.


#Login as root
cd /usr/local
git clone https://bitbucket.org/scheres/relion-3.0_beta.git relion-3-beta-source
cd relion-3-beta-source
mkdir build
cd build
cmake -DCUDA_ARCH=61 -DFORCE_OWN_FLTK=ON -DCMAKE_INSTALL_PREFIX=/usr/local/relion-3-beta ..
make 
make install
cd ../
rm -rf build
#Note Relion 2.1 still sits first in the path and will override Relion 3. You can either edit /etc/bashrc to replace all instances of relion-2 with relion-3-beta or you can set the following each time you want to run relion 3 beta
export PATH=/usr/local/relion-3-beta/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/relion-3-beta/lib:$LD_LIBRARY_PATH