Menu
Home
About
Our Role
Goals
The Team
Roadmap
Tokenomics
How To Buy
Knowledge Base
Contacts
Sitemap & Links
A.I.
Chart
Shop
IMMORTALITY
🏠
⬇️
Install Open-WebUI
New name
B
I
U
S
link
image
code
HTML
list
Show page
Syntax
{pre} sudo apt update {/pre} {pre} sudo apt install docker.io {/pre} {pre} sudo systemctl start docker sudo systemctl enable docker {/pre} {pre} sudo usermod -aG docker $USER sudo chown $USER:$USER /var/run/docker.sock {/pre} Have an Nvidia or compatible GPU? {pre} sudo lshw -c display {/pre} If you have compatible GPU {pre} docker run -d -p 3000:8080 --gpus=all -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama {/pre} otherwise use the CPU {pre} docker run -d -p 3000:8080 -v ollama:/root/.ollama -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:ollama {/pre} Remove the failed GPU installation if you incorrectly installed the GPU version without having a compatible GPU {pre} docker rm open-webui {/pre} Rerun either the GPU or CPU version command above. docker run... After installation, you can access Open WebUI at http://localhost:3000 More commands... {pre} docker stop open-webui docker restart open-webui {/pre} {pre} curl -fsSL https://ollama.com/install.sh | sh {/pre} You go to the website and get the model command and then goto settings in the webui and put the command in Pull a model from Ollama.com Other Web UI's https://github.com/huggingface/chat-ui - Amazing clean UI with very good web search, my go to currently. (they added the ability to do it all locally very recently!) https://github.com/oobabooga/text-generation-webui - Best overall, supports any model format and has many extensions https://github.com/ParisNeo/lollms-webui/ - Has PDF, stable diffusion and web search integration https://github.com/h2oai/h2ogpt - Has PDF, Web search, best for files ingestion (supports many file formats) https://github.com/SillyTavern/SillyTavern - Best for custom characters and roleplay https://github.com/NimbleBoxAI/ChainFury - Has great UI and web search (experimental) https://github.com/nomic-ai/gpt4all - Basic UI that replicated ChatGPT https://github.com/imartinez/privateGPT - Basic UI that replicated ChatGPT with PDF integration More from the comments (Haven't tested myself) : https://github.com/LostRuins/koboldcpp - Easy to install and simple interface LM Studio - Clean UI, focuses on GGUF format https://github.com/lobehub/lobe-chat - Nice rich UI with the ability to load extensions for web search, TTS and more https://github.com/ollama-webui/ollama-webui - ChatGPT like UI with easy way to download models https://github.com/turboderp/exui - very fast and vram efficient https://github.com/PromtEngineer/localGPT - Focuses on PDF files https://github.com/shinomakoi/AI-Messenger - Supports EXLv2 and LLava Documentation - Vercel AI SDK - NodeJS/Reactive !!Update {pre} docker run --rm --volume /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once open-webui {/pre} !!Hackable Docker Install {pre} sudo apt update sudo apt upgrade sudo systemctl start docker sudo systemctl enable docker docker --version {/pre} {pre} sudo curl -L "https://github.com/docker/compose/releases/download/v2.21.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose export PATH=/usr/local/bin:$PATH docker-compose --version {/pre} {pre} docker-compose up -d {/pre} {pre} docker-compose down {/pre} Edit the src: /open-webui/src/lib/components/chat/Messages/Placeholder.svelte {pre} docker-compose up --build {/pre}
Password
Summary of changes
📜
⏱️
⬆️