How To Install python3-iniconfig on Fedora 36

In this tutorial we learn how to install python3-iniconfig in Fedora 36. python3-iniconfig is Brain-dead simple parsing of ini files

Introduction

In this tutorial we learn how to install python3-iniconfig on Fedora 36.

What is python3-iniconfig

iniconfig is a small and simple INI-file parser module having a unique set of features * tested against Python2.4 across to Python3.2, Jython, PyPy * maintains order of sections and entries * supports multi-line values with or without line-continuations * supports “#” comments everywhere * raises errors with proper line-numbers * no bells and whistles like automatic substitutions * iniconfig raises an Error if two sections have the same name.

We can use yum or dnf to install python3-iniconfig on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-iniconfig.

Install python3-iniconfig 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 python3-iniconfig using dnf by running the following command:

sudo dnf -y install python3-iniconfig

Install python3-iniconfig 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 python3-iniconfig using yum by running the following command:

sudo yum -y install python3-iniconfig

How To Uninstall python3-iniconfig on Fedora 36

To uninstall only the python3-iniconfig package we can use the following command:

sudo dnf remove python3-iniconfig

python3-iniconfig Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/iniconfig
/usr/lib/python3.10/site-packages/iniconfig-1.1.1.dist-info
/usr/lib/python3.10/site-packages/iniconfig-1.1.1.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/iniconfig-1.1.1.dist-info/LICENSE
/usr/lib/python3.10/site-packages/iniconfig-1.1.1.dist-info/METADATA
/usr/lib/python3.10/site-packages/iniconfig-1.1.1.dist-info/WHEEL
/usr/lib/python3.10/site-packages/iniconfig-1.1.1.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/iniconfig/__init__.py
/usr/lib/python3.10/site-packages/iniconfig/__init__.pyi
/usr/lib/python3.10/site-packages/iniconfig/__pycache__
/usr/lib/python3.10/site-packages/iniconfig/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/iniconfig/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/iniconfig/py.typed
/usr/share/doc/python3-iniconfig
/usr/share/doc/python3-iniconfig/README.txt
/usr/share/licenses/python3-iniconfig
/usr/share/licenses/python3-iniconfig/LICENSE

References

Summary

In this tutorial we learn how to install python3-iniconfig on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).