I’ve been recently given access to a computer cluster at my university. However, it’s outdate regarding the LAMMPS and Python versions and I had to install them in my personal directory without sudo privileges. I used a lot of help from ChatGPT since I don’t know too much about building from source. Here I attach the LAMMPS part, Python has been installed through pyenv
:
git clone -b stable https://github.com/lammps/lammps.git
cd lammps
mkdir build
cd build
cmake \
-D BUILD _MPI=on \
-D BUILD_LIB=on \
-D PKG_PYTHON=on \
-D PKG_MANYBODY=on \
-D PKG_EXTRA-FIX=on \
-D PKG_EXTRA-DUMP=on \
-D PKG_EXTRA-COMPUTE=on \
-D PKG_EXTRA-COMMAND=on \
-D PYTHON_EXECUTABLE=$(pyenv which python3.13) \
-D CMAKE_INSTALL_PREFIX=$HOME/.lammps \
../cmake
export CC=mpicc
export CXX=mpicxx
make -j8
make install
And I have to add this to .bashrc
to make it work:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$HOME/.pyenv/versions/3.13.0/lib
alias lmp=".lammps/build/lmp"
export PATH=$HOME/.lammps/bin:$PATH
export PYTHONPATH=$HOME/.lammps/lib/lammps:$PYTHONPATH
export LD_LIBRARY_PATH=$HOME/.lammps/lib:$LD_LIBRARY_PATH
export LIBSTDCPP_PATH=$(mpicxx -print-file-name=libstdc++.so)
export LD_LIBRARY_PATH=$(dirname $LIBSTDCPP_PATH):$LD_LIBRARY_PATH
export OMP_NUM_THREADS=2
I want to install LAMMPS in .lammps
and remove all source files at lammps
to keep the home directory clean. If I remove lammps
, the new aliased command lmp
works (overwrites original command at the cluster) fine, but import lammps
in Python fails. It doesn’t fail if I don’t remove that folder though.
Is there any other way of doing this apart from having all files in .lammps
directly?