Revolution R Open (Now named Microsoft R Open) provides Intel MKL multi-threaded BLAS.
This post is to record the installation of MRO in ubuntu 16.04.
First, go to the official website of MRO to check the download link (Link).
The installation is refer to the manual at the website (Link).
1 2 3 4 5 6 7 8 9 10 11 12 13
| wget https://mran.revolutionanalytics.com/install/mro/3.2.4/MRO-3.2.4-Ubuntu-15.4.x86_64.deb wget https://mran.revolutionanalytics.com/install/mro/3.2.4/RevoMath-3.2.4.tar.gz
sudo dpkg -i MRO-3.2.4-Ubuntu-15.4.x86_64.deb
tar -xzf RevoMath-3.2.4.tar.gz cd RevoMath
sudo bash ./RevoMath.sh
sudo chown -R celest.celest /usr/lib64/MRO-3.2.4/R-3.2.4/lib/R sudo chmod -R 775 /usr/lib64/MRO-3.2.4/R-3.2.4/lib/R
|