Installation

Requirements

  • Python >= 3.10

  • numpy

  • pandas

Install from PyPI

The easiest way to install Randum is using pip:

pip install randum

Install from Source

You can also install Randum from the source code:

git clone https://github.com/kactlabs/randum
cd randum
pip install -e .

Verify Installation

To verify that Randum is installed correctly, run:

from randum import Randum
rand = Randum()
print(rand.name())

If you see a random name printed, the installation was successful!