How To Install python3-strictyaml on CentOS 8
Introduction
In this tutorial we learn how to install python3-strictyaml on CentOS 8.
What is python3-strictyaml
StrictYAML is a type-safe YAML parser that parses and validates a restricted subset of the YAML specification. Priorities • Beautiful API • Refusing to parse the ugly, hard to read and insecure features of YAML like the Norway problem. • Strict validation of markup and straightforward type casting. • Clear, readable exceptions with code snippets and line numbers. • Acting as a near-drop in replacement for pyyaml, ruamel.yaml or poyo. • Ability to read in YAML, make changes and write it out again with comments preserved. • Not speed, currently.
We can use yum or dnf to install python3-strictyaml on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-strictyaml.
Install python3-strictyaml on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install python3-strictyaml using yum by running the following command:
sudo yum -y install python3-strictyaml
Install python3-strictyaml on CentOS 8 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install python3-strictyaml using dnf by running the following command:
sudo dnf -y install python3-strictyaml
How To Uninstall python3-strictyaml on CentOS 8
To uninstall only the python3-strictyaml package we can use the following command:
sudo dnf remove python3-strictyaml
References
Summary
In this tutorial we learn how to install python3-strictyaml on CentOS 8 using yum and dnf.