Install mpich
Installing mpich package on Debian Unstable (Sid) is as easy as running the following command on terminal:
sudo apt-get update sudo apt-get install mpich
mpich package information
distro | Debian Unstable (Sid) |
---|---|
section | Main |
name | mpich |
version | 3.2-6 |
description | Implementation of the MPI Message Passing Interface standard |
subsection | devel |
website | mpich.org |
maintainer | Debian Science Maintainers |
Uninstall mpich
To remove just mpich package itself from Debian Unstable (Sid) execute on terminal:
sudo apt-get remove mpich
Uninstall mpich and it’s dependent packages
To remove the mpich package and any other dependant package which are no longer needed from Debian Sid.
sudo apt-get remove --auto-remove mpich
Purging mpich
If you also want to delete configuration and/or data files of mpich from Debian Sid then this will work:
sudo apt-get purge mpich
To delete configuration and/or data files of mpich and it’s dependencies from Debian Sid then execute:
sudo apt-get purge --auto-remove mpich