How To Install python3-socksio on Fedora 36

In this tutorial we learn how to install python3-socksio in Fedora 36. python3-socksio is Client-side sans-I/O SOCKS proxy implementation

Introduction

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

What is python3-socksio

Client-side sans-I/O SOCKS proxy implementation. Supports SOCKS4, SOCKS4A, and SOCKS5. socksio is a sans-I/O library similar to h11 or h2, this means the library itself does not handle the actual sending of the bytes through the network, it only deals with the implementation details of the SOCKS protocols so you can use it in any I/O library you want.

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

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

sudo dnf -y install python3-socksio

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

sudo yum -y install python3-socksio

How To Uninstall python3-socksio on Fedora 36

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

sudo dnf remove python3-socksio

python3-socksio Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/socksio
/usr/lib/python3.10/site-packages/socksio-1.0.0.dist-info
/usr/lib/python3.10/site-packages/socksio-1.0.0.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/socksio-1.0.0.dist-info/LICENSE
/usr/lib/python3.10/site-packages/socksio-1.0.0.dist-info/METADATA
/usr/lib/python3.10/site-packages/socksio-1.0.0.dist-info/WHEEL
/usr/lib/python3.10/site-packages/socksio/__init__.py
/usr/lib/python3.10/site-packages/socksio/__pycache__
/usr/lib/python3.10/site-packages/socksio/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/_types.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/_types.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/compat.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/compat.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/exceptions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/exceptions.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/socks4.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/socks4.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/socks5.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/socks5.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/utils.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/socksio/__pycache__/utils.cpython-310.pyc
/usr/lib/python3.10/site-packages/socksio/_types.py
/usr/lib/python3.10/site-packages/socksio/compat.py
/usr/lib/python3.10/site-packages/socksio/exceptions.py
/usr/lib/python3.10/site-packages/socksio/py.typed
/usr/lib/python3.10/site-packages/socksio/socks4.py
/usr/lib/python3.10/site-packages/socksio/socks5.py
/usr/lib/python3.10/site-packages/socksio/utils.py
/usr/share/doc/python3-socksio
/usr/share/doc/python3-socksio/CHANGELOG.md
/usr/share/doc/python3-socksio/README.md

References

Summary

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