Advertisement
lincruste

memo pour ollama

Feb 6th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | Software | 0 0
  1. # installation d'ollama
  2. curl -fsSL https://ollama.com/install.sh | sh
  3.  
  4. # installation de pip
  5. sudo apt install python3-pip
  6. pip install open-webui
  7.  
  8. # ou bien installation de pipx
  9. apt install pipx
  10. pipx install open-webui
  11.  
  12. # These apps are now globally available
  13. # - open-webui
  14. #⚠ Note: '/home/user/.local/bin' is not on your PATH environment variable.
  15. # These apps will not be globally accessible until your PATH is updated. Run
  16. # `pipx ensurepath` to automatically add it, or manually modify your PATH in
  17. # your shell's config file (i.e. ~/.bashrc).
  18.  
  19. # configuration du PATH pour open-webui
  20. pipx ensurepath
  21.  
  22. # exécution d'ollama
  23. ollama serve
  24.  
  25. # exécution d'open-webui
  26. open-webui serve
  27.  
  28. # adresse d'open-webui
  29. http://localhost:8080
Tags: memo ollama
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement