# Getting Started ## Installation and Configuration ### Prerequisites - Python 3.8 or later - URANIE must be installed and properly sourced in your shell environment ### Install uratools ```bash pip install uratools ``` ## Quick Start Here's a minimal example to get you started: ```python import numpy as np from uratools import converter, pytorch_wrapper, sklearn_wrapper, tensorflow_wrapper # Example: Convert NumPy to DataServer X = np.random.randn(100, 3) tds = converter.np2ds(X, "x1:x2:x3", name="my_data", title="Sample dataset") ```