How To Install python3-aioitertools on Rocky Linux 8

In this tutorial we learn how to install python3-aioitertools on Rocky Linux 8. python3-aioitertools is Itertools and builtins for AsyncIO and mixed iterables

Introduction

In this tutorial we learn how to install python3-aioitertools on Rocky Linux 8.

What is python3-aioitertools

Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables.

We can use yum or dnf to install python3-aioitertools on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install python3-aioitertools.

Install python3-aioitertools on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-aioitertools using dnf by running the following command:

sudo dnf -y install python3-aioitertools

Install python3-aioitertools on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install python3-aioitertools using yum by running the following command:

sudo yum -y install python3-aioitertools

How To Uninstall python3-aioitertools on Rocky Linux 8

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

sudo dnf remove python3-aioitertools

python3-aioitertools Package Contents on Rocky Linux 8

/usr/lib/python3.6/site-packages/aioitertools
/usr/lib/python3.6/site-packages/aioitertools-0.7.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/aioitertools/__init__.py
/usr/lib/python3.6/site-packages/aioitertools/__pycache__
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/asyncio.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/asyncio.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/builtins.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/builtins.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/helpers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/helpers.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/itertools.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/itertools.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/more_itertools.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/more_itertools.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/types.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/__pycache__/types.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/asyncio.py
/usr/lib/python3.6/site-packages/aioitertools/builtins.py
/usr/lib/python3.6/site-packages/aioitertools/helpers.py
/usr/lib/python3.6/site-packages/aioitertools/itertools.py
/usr/lib/python3.6/site-packages/aioitertools/more_itertools.py
/usr/lib/python3.6/site-packages/aioitertools/py.typed
/usr/lib/python3.6/site-packages/aioitertools/tests
/usr/lib/python3.6/site-packages/aioitertools/tests/__init__.py
/usr/lib/python3.6/site-packages/aioitertools/tests/__main__.py
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/__main__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/__main__.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/asyncio.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/asyncio.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/builtins.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/builtins.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/helpers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/helpers.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/itertools.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/itertools.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/more_itertools.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/__pycache__/more_itertools.cpython-36.pyc
/usr/lib/python3.6/site-packages/aioitertools/tests/asyncio.py
/usr/lib/python3.6/site-packages/aioitertools/tests/builtins.py
/usr/lib/python3.6/site-packages/aioitertools/tests/helpers.py
/usr/lib/python3.6/site-packages/aioitertools/tests/itertools.py
/usr/lib/python3.6/site-packages/aioitertools/tests/more_itertools.py
/usr/lib/python3.6/site-packages/aioitertools/types.py
/usr/share/doc/python3-aioitertools
/usr/share/doc/python3-aioitertools/README.md
/usr/share/licenses/python3-aioitertools
/usr/share/licenses/python3-aioitertools/LICENSE

References

Summary

In this tutorial we learn how to install python3-aioitertools on Rocky Linux 8 using yum and dnf.