How To Install python3-pyaes on Fedora 36
Introduction
In this tutorial we learn how to install python3-pyaes
on Fedora 36.
What is python3-pyaes
A pure-Python implementation of the AES block cipher algorithm and the common modes of operation (CBC, CFB, CTR, ECB and OFB).
We can use yum
or dnf
to install python3-pyaes
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-pyaes.
Install python3-pyaes 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-pyaes
using dnf
by running the following command:
sudo dnf -y install python3-pyaes
Install python3-pyaes 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-pyaes
using yum
by running the following command:
sudo yum -y install python3-pyaes
How To Uninstall python3-pyaes on Fedora 36
To uninstall only the python3-pyaes
package we can use the following command:
sudo dnf remove python3-pyaes
python3-pyaes Package Contents on Fedora 36
/usr/lib/python3.10/site-packages/pyaes
/usr/lib/python3.10/site-packages/pyaes-1.6.1-py3.10.egg-info
/usr/lib/python3.10/site-packages/pyaes/__init__.py
/usr/lib/python3.10/site-packages/pyaes/__pycache__
/usr/lib/python3.10/site-packages/pyaes/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/aes.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/aes.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/blockfeeder.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/blockfeeder.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/util.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/pyaes/__pycache__/util.cpython-310.pyc
/usr/lib/python3.10/site-packages/pyaes/aes.py
/usr/lib/python3.10/site-packages/pyaes/blockfeeder.py
/usr/lib/python3.10/site-packages/pyaes/util.py
/usr/share/doc/python3-pyaes
/usr/share/doc/python3-pyaes/README.md
/usr/share/licenses/python3-pyaes
/usr/share/licenses/python3-pyaes/LICENSE.txt
References
Summary
In this tutorial we learn how to install python3-pyaes
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).