Skip to content

Installation

Requirements

  • Python 3.11 or higher
  • pip or uv package manager

Install from PyPI

The simplest way to install rnet is from PyPI:

pip install rnet

Or using uv:

uv pip install rnet

Install from Source

To install the latest development version:

git clone https://github.com/0x676e67/rnet.git
cd rnet
pip install -e .

Verify Installation

Verify that rnet is installed correctly:

import rnet
print(rnet.__version__)

Next Steps

Continue to the Quick Start guide to learn how to use rnet.