Installation
Introduction
liltorch is a library for building and training machine learning models. This tutorial will guide you through the process of installing liltorch from PyPI, the Python Package Index.
Prerequisites
Before installing liltorch, ensure that you have the following prerequisites:
- Python 3.6 or higher
- pip (Python package installer)
You can verify your Python and pip versions by running the following commands in your terminal or command prompt:
python --version
pip --version
Installation Steps
Open the terminal and type:
pip install --upgrade pip
pip install liltorch
Check installation:
import liltorch
print("liltorch version:", liltorch.__version__)