This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Installation of MIRA 3.2.0RC2 ====== ===== Additional librairies ===== The following libraries are necessary: * ''libtcmalloc-minimal0'' * ''libboost-all-dev'' * ''flex'' <code> % sudo apt-get -y install libtcmalloc-minimal0 libboost-all-dev flex </code> ===== Procedure ===== Here is the procedure to install MIRA 3 from its source code: * The archive with the source code for MIRA 3 is downloaded from the web site in ''/home/bioubuntu'', decompressed and the newly created folder is moved in ''/opt/bio/sources''. <code bash> % tar -jxvf mira-3.2.0rc2.tar.bz2 % mv mira_3.2.0rc2 /opt/bio/sources </code> * This folder should belong to ''root'' and its permissions should be ''755''. <code bash> % sudo chown -R root:root /opt/bio/sources/mira_3.2.0rc2 % sudo chmod 755 /opt/bio/sources/mira_3.2.0rc2 </code> * To complete compilation of MIRA without getting some warning about the tcmalloc install, you need to do this: <code bash> % sudo ln -s /usr/lib/libtcmalloc_minimal.so.0.0.0 /usr/lib/libtcmalloc.a </code> * Once that you are in ''/opt/bio/sources/mira_3.2.0rc2'', you only need to do this: <code bash> % cd /opt/bio/sources/mira_3.2.0rc2 % sudo ./configure --with-tcmalloc-dir=/usr/lib && sudo make && sudo make install </code>