
Atomsk on macOS 11+
Pre-requistes
- Install and set up Homebrew: https://brew.sh/
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
2. Install OpenMP for enabling parallelization:
brew install libomp
3. Install Lapack library with homebrew:
brew install lapack
4. Install a Fortran compiler.
which gfortran # if this does not worrk then
brew install gfortran
Downloading and compiling the Source Code
Go to the official website and download the source code.
- Open the src directory in your favourite terminal app. I use iTerm2 :)

2. Enter the following command and hit ENTER:
make atomsk

3. Depending upon your processor, it may take some time. Once it’s done, to make it available system-wide, enter the following and hit Enter:
sudo make install
You will be asked your system password, enter it and done!

That’s it thanks for reading!