Start Your DeepLX Instance
Privatize the deployment of your DeepLX service
TIP
If you don't understand the role of certain variables, you can read this page.
Homebrew
Homebrew is only available for use on macOS. If you haven't installed it yet go to the Homebrew official website to install it.
Install
brew tap owo-network/brew
brew install deeplx
brew services start owo-network/brew/deeplxUpdate
brew update
brew upgrade deeplx
brew services restart owo-network/brew/deeplxUninstall
brew services stop owo-network/brew/deeplx
brew uninstall deeplxView current version
brew list --versions deeplxDocker
Simple
docker run -itd -p 1188:1188 ghcr.io/owo-network/deeplx:latestYou can also choose the following images from DockerHub:
docker run -itd -p 1188:1188 missuo/deeplx:latestAdvanced
Advanced includes setting environment variables, if you don't know how to set them, you can use the Simple command above.
docker run -itd -p 1188:1188 -e "TOKEN=helloxxx" -e "DL_SESSION=xxxxx" ghcr.io/owo-network/deeplx:latestYou can also choose the following images from DockerHub:
docker run -itd -p 1188:1188 -e "TOKEN=helloxxx" -e "DL_SESSION=xxxxx" missuo/deeplx:latestDocker Compose
You can modify the environment variables below on your own, or you can choose to comment out these environment variables.
services:
deeplx:
image: ghcr.io/owo-network/deeplx:latest
restart: always
ports:
- "1188:1188"
environment:
- TOKEN=helloworld
- DL_SESSION=xxxxxxStart the service with the following command:
mkdir deeplx && cd deeplx
wget -O compose.yaml https://raw.githubusercontent.com/OwO-Network/DeepLX/main/compose.yaml
docker compose up -dLinux via Install Script
bash <(curl -Ls https://raw.githubusercontent.com/OwO-Network/DeepLX/main/install.sh)You can also choose the shortened URL:
bash <(curl -Ls https://ssa.sx/dx)Arch Linux via AUR
Special thanks to AsukaMinato for maintaining the updates of ArchLinux packages.
paru -S deeplx-bin
systemctl daemon-reload
systemctl enable deeplxBinary
You can download the binary from the release page. Please select the version suitable for your operating system.