https://www.datacamp.com/tutorial/set-up-and-configure-mysql-in-docker
https://www.datacamp.com/tutorial/llama-cpp-tutorial
https://www.datacamp.com/blog/anythingllm
https://app.datacamp.com/learn/courses/understanding-machine-learning
https://www.datacamp.com/tutorial/set-up-and-configure-mysql-in-docker
https://www.datacamp.com/tutorial/llama-cpp-tutorial
https://www.datacamp.com/blog/anythingllm
https://app.datacamp.com/learn/courses/understanding-machine-learning
- ouvrir un terminal :
mkdir -p ~/.local/share/applications
xed ~/.local/share/applications/lmstudio.desktop
- mettre ça dedans :
[Desktop Entry]
Name=LM Studio
Comment=Local LLM Studio
Exec=/home/TON_USER/Applications/LM-Studio-0.3.15.AppImage
Icon=/home/yves/Images/lmstudio.png
Terminal=false
Type=Application
Categories=Development;AI;
StartupNotify=true
- dans un terminal :
chmod +x ~/.local/share/applications/lmstudio.desktop
--------------------------------------------------------------
boulot :
Gemma 3 1B
precision :
qwen2.5-14b-instruct-uncensored
meta-llama-3.1-8b-instruct
qwen2.5-code-14b-instruct-uncensored
gmktec evo-x2 :
qwen3-32b
curl -fsSL https://ollama.com/install.sh | sh
--> ça installe dans /usr/local
ollama pull qwen2.5-coder:32b
ollama list
--> ok si on voit qwen
ollama serve
--> devrait dire http://localhost:11434
sudo apt install -y docker.io docker-compose
sudo systemctl enable --now docker
sudo usermod -aG docker $USER
newgrp docker
docker run hello-world
--> si ça affiche "Hello from Docker" c'est tout bon
docker rm -f open-webui
docker run -d \
-p 3000:8080 \
--add-host=host.docker.internal:host-gateway \
-e OLLAMA_BASE_URL=http://host.docker.internal:11434 \
-v open-webui:/app/backend/data \
--name open-webui \
--restart unless-stopped \
ghcr.io/open-webui/open-webui:main
--> à lancer plusieurs fois peut-être
--> ça installe open-webui sur le port 3000
dans un navigateur : http://localhost:3000
docker rm -f open-webui
SI OK POUR ALLER SUR L'INTERFACE OPENWEBUI MAIS ON VOIT PAS LE MODELE :
sudo systemctl edit ollama
-->coller ces 2 lignes dans le fichier
[Service]
Environment="OLLAMA_HOST=0.0.0.0:11434"
--> sauver le fichier avec le nom automatique
sudo systemctl daemon-reload
sudo systemctl restart ollama
sudo ss -ltnp | grep 11434
https://www.geekbench.com/
---
./geekbench6
https://browser.geekbench.com/v6/cpu/16419257
---
./geekbench6 --gpu Vulkan
https://browser.geekbench.com/v6/compute/5733917
---
https://www.geekbench.com/ai/
---
./banff --ai-framework OpenVINO
https://browser.geekbench.com/ai/v1/434607
INSTALL:
----------
sudo mkdir -p /etc/apt/keyrings
wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo gpg --dearmor -o /etc/apt/keyrings/winehq-archive.key
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/$(lsb_release -sc)/winehq-$(lsb_release -sc).sources !!!remplacer ${lsb_release -sc) par noble pour 24.04 p.ex
sudo apt update
sudo apt install --install-recommends winehq-stable
UNINSTALL:
----------
sudo apt remove --autoremove winehq-stable
sudo rm /etc/apt/keyrings/winehq-archive.key /etc/apt/sources.list.d/winehq*.sources