http://sco.h-its.org/exelixis/web/software/raxml/hands_on.html https://github.com/stamatak/standard-RAxML wget https://github.com/stamatak/standard-RAxML/archive/master.zip unzip master.zip cd standard-RAxML-master/ make -f Makefile.gcc # basic non-parallized versionmake -f Makefile.SSE3.gcc # x86 processor optimized versionmake -f Makefile.PTHREADS.gcc # parallelized versionmake -f Makefile.SSE3.PTHREADS.gcc # parallelized and x86 processor optimized versionls raxmlHPC* raxmlHPC raxmlHPC-PTHREADS raxmlHPC-PTHREADS-SSE3 raxmlHPC-SSE3 sudo cp raxmlHPC* /usr/local/bin/
# or, add RAxML path to your .bashrc file export PATH=$HOME/tools/RAxML/standard-RAxML-master:$PATH |