I’m writing this documentation because I believe that there will be someone out there who are having difficulties or doubt to install the Intel C++ Compiler 11.0
Good thing that Intel provides the FREE for Non-Commercial Software Development of the Intel C++ Compiler Professional 11.0 only for Linux users.
- download the package (it’s a tar.gz-file)
- unpack it (tar -xvzf filename.tar.gz)
- sudo ./install.sh
Add these to the .bashrc and .profile
# Intel Compiler export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/Compiler/11.0/069/lib/ia32 export PATH=$PATH:/opt/intel/Compiler/11.0/069/bin/ia32
For the Linux newbie, note that both of .bashrc and .profile are hidden files, so you have to use View –> Show Hidden Files (CTRL + H) or ls -a to see them. They’re located in the /home/<username>/
- Restart
- Have fun!
Reference
- Thinking Parallel, Michael Suess, Installing the Intel Compier on Ubuntu Linux, http://www.thinkingparallel.com/2006/12/23/installing-the-intel-compiler-on-ubuntu-linux/

Recent Comments