Shell scripts to install LibreTranslate
Uses WSGI with Gunicorn and Nginx.
Tested on Ubuntu 20.04.
Known Python version bug with Ubuntu 24.04 and Python 3.12.
# Create libretranslate user
useradd libretranslate
mkdir /home/libretranslate
chown libretranslate:libretranslate /home/libretranslate
usermod -aG sudo libretranslate
passwd -d libretranslate
su libretranslate
# Download LibreTranslate-init
git clone https://github.com/argosopentech/LibreTranslate-init.git ~/LibreTranslate-init
# Download dependencies and run LibreTranslate on port 5000
~/LibreTranslate-init/setup.sh
# Add your hostname or IP address to this command
# When you run LibreTranslate for the first time it will download all of the language model packages
~/LibreTranslate/env/bin/libretranslate --host <your hostname or IP address>
# Set server_name to your domain name in ~/LibreTranslate-init/nginx
# Run LibreTranslate WSGI with nginx and systemd
~/LibreTranslate-init/run.sh
# Check LibreTranslate status
sudo systemctl status libretranslate
# Enable https
~/LibreTranslate-init/get-cert.sh