Installation ============ Requirements ------------ * Python >= 3.10 * numpy * pandas Install from PyPI ----------------- The easiest way to install Randum is using pip: .. code-block:: bash pip install randum Install from Source ------------------- You can also install Randum from the source code: .. code-block:: bash git clone https://github.com/kactlabs/randum cd randum pip install -e . Verify Installation ------------------- To verify that Randum is installed correctly, run: .. code-block:: python from randum import Randum rand = Randum() print(rand.name()) If you see a random name printed, the installation was successful!