How To Install polyml on Fedora 36
Introduction
In this tutorial we learn how to install polyml
on Fedora 36.
What is polyml
Poly/ML is a full implementation of Standard ML available as open-source. This release supports the ML97 version of the language and the Standard Basis Library.
We can use yum
or dnf
to install polyml
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install polyml.
Install polyml on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install polyml
using dnf
by running the following command:
sudo dnf -y install polyml
Install polyml on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install polyml
using yum
by running the following command:
sudo yum -y install polyml
How To Uninstall polyml on Fedora 36
To uninstall only the polyml
package we can use the following command:
sudo dnf remove polyml
polyml Package Contents on Fedora 36
/usr/bin/poly
/usr/bin/polyc
/usr/bin/polyimport
/usr/lib/.build-id
/usr/lib/.build-id/3c
/usr/lib/.build-id/3c/5ca83e61ce2fc9db0af62bdd2f8fadd6548d81
/usr/lib/.build-id/8b
/usr/lib/.build-id/8b/169ea885f6f98c31d72b6b07149556c2858d73
/usr/lib64/libpolymain.a
/usr/lib64/libpolyml.so
/usr/lib64/pkgconfig/polyml.pc
/usr/lib64/polyml
/usr/lib64/polyml/modules
/usr/lib64/polyml/modules/IntInfAsInt
/usr/share/man/man1/poly.1.gz
/usr/share/man/man1/polyc.1.gz
/usr/share/man/man1/polyimport.1.gz
References
Summary
In this tutorial we learn how to install polyml
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).