🌐
LibreTranslate
docs.libretranslate.com › guides › installation
Installation | LibreTranslate
In production it’s recommended to run LibreTranslate with Gunicorn or Docker (which is setup with Gunicorn) in order to avoid memory leaks. To use the faster sentence boundary detector (MiniSBD) use: ... You can also run the application with docker. First clone the repository: ... Then on Linux/macOS run ./run.sh [args], on Windows run run.bat [args].
🌐
LinuxLinks
linuxlinks.com › machine-learning-linux-libretranslate-self-hosted-machine-translation
Machine Learning in Linux: LibreTranslate is Self-hosted Machine Translation - LinuxLinks
July 13, 2023 - We recently explored Argos Translate, state of the art neural machine translation software. That software provides a Python library, command-line interface, and a GUI. LibreTranslate is a machine translation API which is entirely self-hosted.
Author: LibreTranslate
🌐
LibreTranslate
docs.libretranslate.com
Documentation | LibreTranslate
$ curl -X POST https://libretranslate.com/translate -d q="Hello" -d source=en -d target=es -d api_key=xxxxx ... Installation How to quickly get the software up and running on your machine.
🌐
YouTube
youtube.com › watch
Installing LibreTranslate on Ubuntu with LibreTranslate-init - YouTube
Run LibreTranslate on Ubuntu 20.04.Uses LibreTranslate WSGI with Gunicorn and Nginx.LibreTranslate-init: https://github.com/argosopentech/LibreTranslate-init...
Published: July 31, 2021
🌐
Lindevs
lindevs.com › install-libretranslate-inside-docker-container-in-linux
Install LibreTranslate Inside Docker Container in Linux | Lindevs
February 20, 2023 - docker run -d --name=libretranslate --restart=always --network=host \ -e LT_LOAD_ONLY=de,en \ -v /opt/libretranslate/data:/home/libretranslate/.local/share \ -v /opt/libretranslate/cache:/home/libretranslate/.local/cache \ libretranslate/libretranslate
🌐
GitHub
github.com › argosopentech › LibreTranslate-init
GitHub - argosopentech/LibreTranslate-init: Shell scripts to install LibreTranslate · GitHub
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
Author: argosopentech
🌐
LibreTranslate Community
community.libretranslate.com › libretranslate api
Libretranslate on Ubuntu. How to access the web intrface with specific domain not local IP - LibreTranslate API - LibreTranslate Community
November 7, 2023 - Hi, I am new to Linux. I have installed the Libretranslate on the Ubuntu desktop. I can access the Libretranslate web interface with the local IP address on port 80. How can I set this up to access via a custom URL on Ap…
Find elsewhere
🌐
DeepWiki
deepwiki.com › LibreTranslate › LibreTranslate › 3.1-python-installation
Python Installation | LibreTranslate/LibreTranslate | DeepWiki
March 13, 2026 - This page documents how to install and run LibreTranslate as a Python package using pip or from source. This installation method is suitable for direct deployment on servers or local development environments.
🌐
Tux Machines
news.tuxmachines.org › n › 2023 › 07 › 14 › Machine_Learning_in_Linux_LibreTranslate_is_Self_hosted_Machine.shtml
Tux Machines — Machine Learning in Linux: LibreTranslate is Self-hosted Machine Translation
Another new feature in Firefox ... software provides a Python library, command-line interface, and a GUI. LibreTranslate is a machine translation API which is entirely self-hosted....
🌐
LibreTranslate
libretranslate.com
LibreTranslate - Free and Open Source Machine Translation API 🌐
Free and Open Source Machine Translation API. Free to download, offline capable and easy to setup. Run your own API server in just a few minutes.
🌐
howtos
blog.gcn.sh › howtos › installing-libretranslate-using-docker-and-ubuntu
Installing libretranslate using Docker — howtos - blog.gcn.sh
July 5, 2023 - The main use of this Libretranslate is to translate mastodon toots. You need a Linux Server with Docker, and Docker-compose installed.
🌐
Linux Today
linuxtoday.com › home › developer
LibreTranslate: Self-hosted Machine Translation
July 18, 2023 - LibreTranslate is a machine translation API, which is entirely self-hosted, that allows open-source machine translation in projects.
🌐
Hyacinth
hyacinth.rocks › index.php › 2022 › 07 › 04 › installing-libretranslate-on-an-ubuntu-server
Installing LibreTranslate on an Ubuntu Server | Hyacinth Jean Baptiste Emmanuelle Jasmine Noxema Tapioca Landry
apt update apt install docker-compose a2enmod proxy_http a2enmod proxy git clone https://github.com/uav4geo/LibreTranslate cd LibreTranslate docker-compose up -d --build docker run -ti --rm -p 5000:5000 libretranslate/libretranslate
🌐
Libre Self-hosted
libreselfhosted.com › project › libre-translate
Every thing you need to know about Libre Translate
February 11, 2023 - The models are stored inside the container under /home/libretranslate/.local/share and /home/libretranslate/.local/cache. Feel free to use volumes if you do not want to redownload the models when the container is destroyed. To update the models, use the --update-models argument. You can use hardware acceleration to speed up translations on a GPU machine with CUDA 11.2 and nvidia-docker installed.
🌐
Docker Hub
hub.docker.com › r › libretranslate › libretranslate › tags
libretranslate/libretranslate - Docker Image
By libretranslate•Updated 4 days ago · Free and Open Source Machine Translation API. Self-hosted, offline capable and easy to setup. Image · Languages & frameworks · API management · Machine learning & AI · 72 · 5M+ OverviewTags · Sort by · Newest ·
🌐
Linux Magazine
linux-magazine.com › Issues › 2026 › 307 › Argos-Translate-and-LibreTranslate
Language Machines » Linux Magazine
In fact, there are two – Argos Translate [1] and LibreTranslate [2] – and they're closely related. Argos Translate is an open source neural machine translation engine, a command-line tool (with an optional bare-bones GUI), and a Python library, while LibreTranslate is a self-hosted web application built on top of Argos Translate.
🌐
GitHub
github.com › LibreTranslate › LibreTranslate › blob › main › run.sh
LibreTranslate/run.sh at main · LibreTranslate/LibreTranslate
platform="Linux" # Assumed · uname=$(uname) case $uname in · "Darwin") platform="MacOS / OSX" ;; MINGW*) platform="Windows" ;; esac · · usage(){ echo "Usage: $0 [--port N]" echo · echo "Run LibreTranslate using docker." echo ·
Author: LibreTranslate