DeepLX (Cache)ΒΆ
Download from releases:
Get
deeplx_windows_amd64.exe
from DeepLX - Releases.Run
deeplx_windows_amd64.exe
.
Or build from source [1]:
git clone --depth=1 https://github.com/OwO-Network/DeepLX
cd DeepLX
go mod tidy
go build .
Get deeplx_linux_arm64
from DeepLX - Releases.
chmod +x deeplx_linux_arm64
mv deeplx_linux_arm64 /usr/bin/deeplx
sudo mkdir -p /opt/deeplx
sudo vim /etc/systemd/system/deeplx.service
[Unit]
Description=DeepLX Service
After=network.target
[Service]
User=root
Group=root
ExecStart=/usr/bin/deeplx
WorkingDirectory=/opt/deeplx
Restart=on-abnormal
[Install]
WantedBy=multi-user.target
sudo systemctl enable --now deeplx.service