This file contains hidden or 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
sudo apt update | |
sudo apt upgrade -y | |
sudo reboot now | |
# Install nvidia drivers | |
sudo apt install nvidia-driver-*** | |
sudo reboot now | |
# terminal and project folder | |
sudo apt install terminator -y |
This file contains hidden or 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
name: Local Assistant | |
version: 1.0.0 | |
schema: v1 | |
models: | |
- name: Qwen3-14B | |
provider: openai | |
model: Qwen3-14B | |
apiBase: yourOpenWebUIurl/api | |
apiKey: sk-apikey-OpenWebUI | |
template: none |
This file contains hidden or 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
# Remove existing CUDA installation | |
sudo apt-get - purge remove "*cuda*" | |
sudo apt-get autoremove | |
# Install CUDA 12.4 | |
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-ubuntu2204.pin | |
sudo mv cuda-ubuntu2204.pin /etc/apt/preferences.d/cuda-repository-pin-600 | |
wget https://developer.download.nvidia.com/compute/cuda/12.4.0/local_installers/cuda-repo-ubuntu2204-12-4-local_12.4.0-550.54.14-1_amd64.deb | |
sudo dpkg -i cuda-repo-ubuntu2204–12–4-local_12.4.0–550.54.14–1_amd64.deb | |
sudo cp /var/cuda-repo-ubuntu2204–12–4-local/cuda-*-keyring.gpg /usr/share/keyrings/ |