How To Install python3-socketio on Debian 12

Learn how to install python3-socketio on Debian 12 with this tutorial. python3-socketio is python3 implementation of the Socket.IO realtime client and server

Introduction

In this tutorial we learn how to install python3-socketio on Debian 12.

What is python3-socketio

python3-socketio is:

Socket.IO is a transport protocol that enables real-time bidirectional event-based communication between clients (typically, though not always, web browsers) and a server. The official implementations of the client and server components are written in JavaScript. This package provides Python implementations of both, each with standard and asyncio variants.

Client Features:

Can connect to other Socket.IO compliant servers besides the one in this package. Compatible with Python 3.5+. Two versions of the client, one for standard Python and another for asyncio. Uses an event-based architecture implemented with decorators that hides the details of the protocol. Implements HTTP long-polling and WebSocket transports. Automatically reconnects to the server if the connection is dropped.

Server Features:

Can connect to servers running other compliant Socket.IO clients besides the one in this package. Compatible with Python 3.5+. Two versions of the server, one for standard Python and another for asyncio. Supports large number of clients even on modest hardware due to being asynchronous. Can be hosted on any WSGI and ASGI web servers includind Gunicorn, Uvicorn, eventlet and gevent. Can be integrated with WSGI applications written in frameworks such as Flask, Django, etc. Can be integrated with aiohttp, sanic and tornado asyncio applications. Broadcasting of messages to all connected clients, or to subsets of them assigned to rooms. Optional support for multiple servers, connected through a messaging queue such as Redis or RabbitMQ. Send messages to clients from external processes, such as Celery workers or auxiliary scripts. Event-based architecture implemented with decorators that hides the details of the protocol. Support for HTTP long-polling and WebSocket transports. Support for XHR2 and XHR browsers. Support for text and binary messages. Support for gzip and deflate HTTP compression. Configurable CORS responses, to avoid cross-origin problems with browsers.

There are three methods to install python3-socketio on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-socketio Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-socketio using apt-get by running the following command:

sudo apt-get -y install python3-socketio

Install python3-socketio Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install python3-socketio

Install python3-socketio Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-socketio using aptitude by running the following command:

sudo aptitude -y install python3-socketio

How To Uninstall python3-socketio on Debian 12

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

sudo apt-get remove python3-socketio

Uninstall python3-socketio And Its Dependencies

To uninstall python3-socketio and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove python3-socketio

Remove python3-socketio Configurations and Data

To remove python3-socketio configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge python3-socketio

Remove python3-socketio configuration, data, and all of its dependencies

We can use the following command to remove python3-socketio configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-socketio

Dependencies

python3-socketio have the following dependencies:

References

Summary

In this tutorial we learn how to install python3-socketio package on Debian 12 using different package management tools: apt, apt-get and aptitude.