How To Install python3-py9p on Fedora 36
Introduction
In this tutorial we learn how to install python3-py9p on Fedora 36.
What is python3-py9p
Protocol 9P is developed for Plan9 operating system from Bell Labs. It is used for remote file access, and since files are key objects in Plan9, 9P can be used also for composite file access, RPC etc. This library provides low-level 9p2000.u API. For high-level look into python-pyvfs. This is a Python 3 version.
We can use yum or dnf to install python3-py9p on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-py9p.
Install python3-py9p 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-py9p using dnf by running the following command:
sudo dnf -y install python3-py9p
Install python3-py9p 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-py9p using yum by running the following command:
sudo yum -y install python3-py9p
How To Uninstall python3-py9p on Fedora 36
To uninstall only the python3-py9p package we can use the following command:
sudo dnf remove python3-py9p
python3-py9p Package Contents on Fedora 36
/usr/lib/python3.10/site-packages/py9p
/usr/lib/python3.10/site-packages/py9p-1.0.9-py3.10.egg-info
/usr/lib/python3.10/site-packages/py9p/__init__.py
/usr/lib/python3.10/site-packages/py9p/__pycache__
/usr/lib/python3.10/site-packages/py9p/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/fuse9p.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/fuse9p.cpython-310.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/pki.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/pki.cpython-310.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/py9p.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/py9p.cpython-310.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/utils.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/py9p/__pycache__/utils.cpython-310.pyc
/usr/lib/python3.10/site-packages/py9p/fuse9p.py
/usr/lib/python3.10/site-packages/py9p/pki.py
/usr/lib/python3.10/site-packages/py9p/py9p.py
/usr/lib/python3.10/site-packages/py9p/utils.py
/usr/share/doc/python3-py9p
/usr/share/doc/python3-py9p/README.md
/usr/share/licenses/python3-py9p
/usr/share/licenses/python3-py9p/LICENSE
References
Summary
In this tutorial we learn how to install python3-py9p on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).