Installation

Langesim is available on PyPI and can be installed with pip. To install the package, create a virtual environment (see below), activate it, then install with pip:

pip install langesim

Alternatively, the package can be installed from source:

  1. Clone the langesim repository

    git clone https://github.com/GabrielTellez/langesim.git
    
  2. To install the package you have two options: install with poetry or with pip. First, enter the top directory of the package

    cd langesim
    
    poetry install
    
    • Otherwise, pip can be used to install the package. Create a virtual environment, activate it, then install with pip:

    python -m venv .langesim_env
    
    # Activate environment:
    # bash shell
    source .langesim_env/bin/activate
    # or windows cmd
    .langesim_env\Scripts\activate.bat
    # or windows powershell
    .langesim_env\Scripts\activate.ps1
    
    pip install .