Install Yambo on Ubuntu/LinuxMint: Difference between revisions

From The Yambo Project
Jump to navigation Jump to search
No edit summary
No edit summary
 
(33 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Here we can find the instruction to install Yambo 5.0.1 on a standard machine with a [https://ubuntu.com/ Ubuntu]/[https://linuxmint.com/ LinuxMint] distribution.
Here we can find the instruction to install Yambo 5.3 on a standard machine with a [https://ubuntu.com/ Ubuntu]/[https://linuxmint.com/ LinuxMint] distribution.
 
We suppose you have root permission on your machine to install all the required packages. In this installation we will use MKL libraries, <br>
if you have an AMD processor you could be interested to use the AOLC(AMD Optimizing CPU Libraries) libraries: [https://www.amd.com/fr/developer/aocl.html https://www.amd.com/fr/developer/aocl.html]


We suppose you have root permission on your machine to install all the required packages.


Run apt-get to update the package list
Run apt-get to update the package list
Line 7: Line 9:
  apt-get -yqq update  
  apt-get -yqq update  


Install compilers, python, mkl, and all necessary libraries to compile Yambo:
Install compilers, and all necessary libraries to compile Yambo:


  apt-get -yqq install --no-install-recommends build-essential ca-certificates curl file \
  '''<span style="color:#0000FF">sudo apt-get install</span> build-essential make gcc g++ gfortran openmpi-bin openmpi-common libopenmpi-dev intel-mkl libxc9 libxc-dev intel-mkl libscalapack-openmpi-dev libhdf5-dev libhdf5-openmpi-dev slepc-dev petsc-dev libmkl-blacs-openmpi-lp64 libmkl-scalapack-lp64'''
        make gcc g++ gfortran git gnupg2 iproute2 lmod \
        locales lua-posix python3 python3-pip python3-setuptools \
        tcl unzip m4 wget git zlib1g-dev ssh \
        libmkl-gf-lp64 libmkl-gnu-thread libmkl-avx libmkl-avx2 libmkl-avx512 libmkl-core libmkl-def libmkl-dev libmkl-gf-ilp64
remove downloaded packages and set language:


  apt-get clean
  '''<span style="color:#0000FF">export</span> LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/lib/x86_64-linux-gnu/"'''
  locale-gen en_US.UTF-8
  '''<span style="color:#0000FF">export</span> MKLROOT="/usr/"'''
   
   
download lastest Yambo release, this case the 5.0.1:
download lastest Yambo release, in this case the 5.3:


  wget https://github.com/yambo-code/yambo/archive/5.0.1.tar.gz -O yambo-5.0.1.tar.gz  
  wget https://github.com/yambo-code/yambo/archive/5.3.tar.gz -O yambo-5.3.tar.gz  


decompress the file  
decompress the file  


  tar zxfv yambo-5.0.1.tar.gz && cd yambo-5.0.1
  tar zxfv yambo-5.3.tar.gz && cd yambo-5.3


configure Yambo
configure Yambo


  ./configure --disable-mpi --enable-open-mp --enable-msgs-comps --enable-time-profile --enable-memory-profile \
  '''<span style="color:#0000FF">./configure</span> --enable-open-mp --enable-par-linalg --enable-memory-profile --with-scalapack-libs="-lmkl_scalapack_lp64" --with-blacs-libs="-lmkl_blacs_openmpi_lp64" --enable-slepc-linalg --with-slepc-libs="-lslepc" --with-slepc-includedir=/usr/include/slepc/  --with-petsc-libs="-lpetsc" --with-petsc-includedir=/usr/include/petsc/ --with-libxc-libdir=/usr/lib/x86_64-linux-gnu/ --with-libxc-includedir=/usr/include/'''
  --with-blas-libs="-L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl" \
 
  --with-lapack-libs="-L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_gf_lp64 -lmkl_gnu_thread -lmkl_core -lgomp -lpthread -lm -ldl"
compile the code:
 
  '''make -j4 core'''


compile the code  
where -j4 means that the code is compiled in parallel on 4 cores
The compilation was successful if there are the yambo executables in the <code>bin/</code> directory.


  make -j4 yambo && make -j4 interfaces && make -j4 ypp
From now the instructions are optional but suggested! You may need sudo privileges to install Yambo in a system directory, otherwise install it in your home space. 


create a folder to install code and libraries:
Create a folder to install code and libraries:


  mkdir -p /usr/local/yambo-5.0.1/lib  
  mkdir -p /usr/local/yambo-5.3/lib  


copy code and libraries in Yambo folder:
copy code and libraries in Yambo folder:


  cp -r bin /usr/local/yambo-5.0.1/  
  cp -r bin /home/username/local/yambo-5.3/  
  cp -r lib/external/*/*/lib/*.* /usr/local/yambo-5.0.1/lib/  
  cp -r lib/external/*/*/lib/*.* /home/username/local/yambo-5.3/lib/  
  cp -r lib/external/*/*/v4/serial/lib/*.* /usr/local/yambo-5.0.1/lib/  
  cp -r lib/external/*/*/v4/serial/lib/*.* /home/username/local/yambo-5.3/lib/
  cd ..  
cp -r lib/external/*/*/include/*.* /home/username/local/yambo-5.3/include/  
  cp -r lib/external/*/*/v4/serial/include/*.* /home/username/local/yambo-5.3/include/


you can remove the tar.gz file and the Yambo folder:
you can remove the tar.gz file and the Yambo folder (optional):


   rm -rf yambo-5.0.1 yambo-5.0.1.tar.gz
  cp ..
   rm -rf yambo-5.3 yambo-5.3.tar.gz


set the path to the Yambo bin folder, for tcsh/csh:
set the path to the Yambo bin folder, for tcsh/csh:


  setenv PATH=/usr/local/yambo-${yambo_version}/bin:$PATH  
  setenv PATH=/home/username/local/yambo-5.3/bin:$PATH  
  setenv LD_LIBRARY_PATH=/usr/local/yambo-${yambo_version}/lib:$LD_LIBRARY_PATH
  setenv LD_LIBRARY_PATH=/home/username/local/yambo-5.3/lib:$LD_LIBRARY_PATH


or in bash:
or in bash:


  export PATH=/usr/local/yambo-5.0.1/bin:$PATH  
  export PATH=/usr/local/yambo-5.3/bin:$PATH  
  export LD_LIBRARY_PATH=/usr/local/yambo-5.0.1/lib:$LD_LIBRARY_PATH
  export LD_LIBRARY_PATH=/usr/local/yambo-5.3/lib:$LD_LIBRARY_PATH


you are ready to use Yambo!!!!
you are ready to use Yambo!!!!
<br>
'''Optional for developers'''
you can copy also the include files:
mkdir -p /usr/local/yambo-5.3/include
cp -r lib/external/*/*/include/*.* /usr/local/yambo-5.3/include/
cp -r lib/external/*/*/v4/serial/include/*.* /usr/local/yambo-5.3/include/ 
and can add to the configure the following lines:
export YAMBO_LIBS=/usr/local/yambo-5.3
and use the following options in the configure:
--with-iotk-path="${YAMBO_LIBS}"  --with-netcdf-path="${YAMBO_LIBS}" --with-netcdff-path="${YAMBO_LIBS}"
so the next time you recompile yambo from scrach it will not recompile the libraries.

Latest revision as of 09:03, 14 February 2025

Here we can find the instruction to install Yambo 5.3 on a standard machine with a Ubuntu/LinuxMint distribution.

We suppose you have root permission on your machine to install all the required packages. In this installation we will use MKL libraries,
if you have an AMD processor you could be interested to use the AOLC(AMD Optimizing CPU Libraries) libraries: https://www.amd.com/fr/developer/aocl.html


Run apt-get to update the package list

apt-get -yqq update 

Install compilers, and all necessary libraries to compile Yambo:

sudo apt-get install build-essential make gcc g++ gfortran  openmpi-bin openmpi-common libopenmpi-dev intel-mkl libxc9 libxc-dev intel-mkl libscalapack-openmpi-dev libhdf5-dev libhdf5-openmpi-dev slepc-dev petsc-dev libmkl-blacs-openmpi-lp64 libmkl-scalapack-lp64
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/lib/x86_64-linux-gnu/"
export MKLROOT="/usr/"

download lastest Yambo release, in this case the 5.3:

wget https://github.com/yambo-code/yambo/archive/5.3.tar.gz -O yambo-5.3.tar.gz 

decompress the file

tar zxfv yambo-5.3.tar.gz && cd yambo-5.3 

configure Yambo

./configure --enable-open-mp --enable-par-linalg --enable-memory-profile --with-scalapack-libs="-lmkl_scalapack_lp64" --with-blacs-libs="-lmkl_blacs_openmpi_lp64" --enable-slepc-linalg --with-slepc-libs="-lslepc" --with-slepc-includedir=/usr/include/slepc/  --with-petsc-libs="-lpetsc" --with-petsc-includedir=/usr/include/petsc/ --with-libxc-libdir=/usr/lib/x86_64-linux-gnu/ --with-libxc-includedir=/usr/include/

compile the code:

 make -j4 core

where -j4 means that the code is compiled in parallel on 4 cores The compilation was successful if there are the yambo executables in the bin/ directory.

From now the instructions are optional but suggested! You may need sudo privileges to install Yambo in a system directory, otherwise install it in your home space.

Create a folder to install code and libraries:

mkdir -p /usr/local/yambo-5.3/lib 

copy code and libraries in Yambo folder:

cp -r bin /home/username/local/yambo-5.3/ 
cp -r lib/external/*/*/lib/*.* /home/username/local/yambo-5.3/lib/ 
cp -r lib/external/*/*/v4/serial/lib/*.* /home/username/local/yambo-5.3/lib/ 
cp -r lib/external/*/*/include/*.* /home/username/local/yambo-5.3/include/ 
cp -r lib/external/*/*/v4/serial/include/*.* /home/username/local/yambo-5.3/include/ 

you can remove the tar.gz file and the Yambo folder (optional):

 cp ..
 rm -rf yambo-5.3 yambo-5.3.tar.gz

set the path to the Yambo bin folder, for tcsh/csh:

setenv PATH=/home/username/local/yambo-5.3/bin:$PATH 
setenv LD_LIBRARY_PATH=/home/username/local/yambo-5.3/lib:$LD_LIBRARY_PATH

or in bash:

export PATH=/usr/local/yambo-5.3/bin:$PATH 
export LD_LIBRARY_PATH=/usr/local/yambo-5.3/lib:$LD_LIBRARY_PATH

you are ready to use Yambo!!!!


Optional for developers

you can copy also the include files:

mkdir -p /usr/local/yambo-5.3/include
cp -r lib/external/*/*/include/*.* /usr/local/yambo-5.3/include/ 
cp -r lib/external/*/*/v4/serial/include/*.* /usr/local/yambo-5.3/include/  

and can add to the configure the following lines:

export YAMBO_LIBS=/usr/local/yambo-5.3

and use the following options in the configure:

--with-iotk-path="${YAMBO_LIBS}"  --with-netcdf-path="${YAMBO_LIBS}" --with-netcdff-path="${YAMBO_LIBS}" 

so the next time you recompile yambo from scrach it will not recompile the libraries.