-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ae324f
commit f45eae6
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
https://ollama.com | ||
|
||
Install WSL `wsl --install` (setup admin credentials) | ||
|
||
Run Linux on Windows | ||
`wsl` | ||
|
||
Update Ubuntu (admin credentials needed) | ||
`sudo apt update` | ||
`sudo apt upgrade -y` | ||
|
||
Install Ollama | ||
`curl -fsSL https://ollama.com/install.sh | sh` | ||
|
||
Run Ollama | ||
`ollama serve` | ||
|
||
Check if Ollama is properly installed | ||
http://localhost:11434 | ||
|
||
Pull LLM | ||
`ollama pull llama2` | ||
|
||
Run LLM | ||
`ollama run llama2` | ||
|
||
|
||
Run Open WebUI | ||
|
||
`docker run -d -p 3000:8080 -e OLLAMA_BASE_URL=http://localhost:11434 -v open-webui:/app/backend/data --name open-webui --restart always ghcr.io/open-webui/open-webui:main` |