DEB-based systems (Debian, Ubuntu, Mint, etc.)
First issue the following commands:
$ sudo apt install libexpat1 libboost-python-dev libboost-system-dev \
libboost-filesystem-dev liblapack3 python3-numpy \
ipython3 python3-matplotlib python3-h5py python3-pyqt5 python3-lxml python3-yaml
On Debian, additionally run:
$ sudo apt install libopenblas0-serial
while on Ubuntu and its derivatives:
$ sudo apt install libmkl-core libmkl-sequential libmkl-intel-lp64 libmkl-rt
You need to do the above only once.
Then, download the DEB package from this page and install it with
the following command:
$ 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.
If you want to compile binary materials database, install the additional -dev
package.
Install using APT
You can can install PLaSK on Ubuntu or Debian Stable using APT.
To do so, edit a file /etc/apt/sources.list.d/plask.list
:
$ sudo nano /etc/apt/sources.list.d/plask.list
and put the following content in it:
# Content of /etc/apt/sources.list.d/plask.list for Ubuntu
deb https://get.plask.app/ubuntu noble/
If you are using any other Ubuntu version, replace noble
with your
distribution code (lowercase).
For Debian Stable, this file should look like:
# Content of /etc/apt/sources.list.d/plask.list for Debian
deb https://get.plask.app/debian stable/
Next download the redmine.key
file and type in a shell:
$ sudo apt-key add redmine.key
$ sudo apt update
$ sudo apt install plask
Manjaro, Arch
Simply download the package and type in the terminal:
$ sudo pacman -U your_downloaded_file.pkg.tar.xz
PLaSK is also available in AUR. You can install it eg. with:
$ pamac build plask-bin
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 this page 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.
If you want to compile binary materials database, install the additional -dev
package.