How To Install LanGauge

This page includes steps for installing with Pip or Docker-Compose.

Pip Install

1.) Navigate to a folder you want to use with LanGauge and start a virtual environment.

python3 -m venv env

2.) Activate the virtual environment.

source env/bin/activate

3.) Install LanGauge into your environment.

pip install langauge

4.) Start the frontend.

langauge ui [OPTIONS] Options: -h, --host TEXT The network address to listen on (default: 127.0.0.1). Use 0.0.0.0 to bind to all addresses if you want to access the tracking server from other machines. -p, --port INTEGER The UI port to configure on (default:8080) -b --backend TEXT The backend address & port to listen on requests (default: 127.0.0.1:5000). --help Show this message and exit.

5.) Start the backend.

langauge backend [OPTIONS] Options: -bp, --backendport INTEGER The backend port to configure on (default:5000)

Docker-Compose

1.) Clone the repository into a folder of your choice.

git clone https://github.com/flapmx/LanGauge.git

2.) Move to langauge directory (the one with the docker-compose.yml!)

cd langauge

3.) Build and launch the project.

docker-compose up --build -d

When finished, close the project.

docker-compose down

How Do I Use LanGauge?