Last active
January 10, 2025 08:25
-
-
Save DPS0340/9acbfe53be5e87f910b001ff406b4b4e to your computer and use it in GitHub Desktop.
install open-webui systemd user service with micromamba
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
�"${SHELL}" <(curl -L micro.mamba.pm/install.sh) | |
source ~/.zshrc | |
# See https://docs.openwebui.com/getting-started/quick-start/ | |
micromamba create -n open-webui python=3.11 | |
micromamba shell init --shell zsh --root-prefix=~/.local/share/mamba | |
source ~/.zshrc | |
micromamba activate open-webui | |
pip install open-webui | |
micromamba deactivate | |
sudo touch /etc/systemd/user/open-webui.service | |
cat << EOF | sudo tee /etc/systemd/user/open-webui.service | |
[Unit] | |
Description=open-webui Service | |
After=network-online.target | |
[Service] | |
ExecStart=$HOME/.local/bin/micromamba run -n open-webui open-webui serve --port 3000 | |
Restart=always | |
RestartSec=3 | |
[Install] | |
WantedBy=default.target | |
EOF | |
systemctl --user daemon-reload | |
systemctl --user enable --now open-webui | |
systemctl --user status open-webui | |
open localhost:3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment