Project

General

Profile

Linux Install

DEB-based systems (Debian, Ubuntu, Mint, etc.)

First download the correct DEB package from the https://get.plask.app.

Then issue the following commands:

$ sudo apt install libexpat1 libboost-python-dev libboost-system-dev \
                   libboost-filesystem-dev python3-numpy \
                   ipython3 python3-matplotlib python3-h5py python3-pyqt5 python3-lxml python3-yaml

$ sudo apt install libopenblas0-serial                                        # on Debian or
$ sudo apt intall  libmkl-rt libmkl-core libmkl-sequential libmkl-intel-lp64  # on Ubuntu and its derivatives

$ sudo dpkg -i your_downloaded_file.deb

where your_downloaded_file.deb is the file name of the downloaded package.

If there is no error, you can run PLaSK.

Manjaro, Arch

You can download the correct package from AUR. If you are using pamac (default in Manjaro) just type:

$ pamac build plask

RedHat, CentOS, Fedora

You must first prepare your system by enabling EPEL repository. To do so in RHEL 7.x or CentOS 7.x issue the following commands:

$ cd /tmp
$ wget https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm
$ sudo yum install epel-release-7-2.noarch.rpm

You need to do the above only once.

Then, download the RPM package from the files section and install it with the following command:

$ sudo yum install your_downloaded_file.rpm

where your_downloaded_file.rpm is the file name of the downloaded package.

If there is no error, you can run PLaSK.

Go to top