Added optional AI setup

This commit is contained in:
Nathan Schneider
2026-02-03 13:44:55 -07:00
parent 2f63b688f9
commit eb18e9b4c1
5 changed files with 28 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
# Local AI system installation
# Install ollama
curl -fsSL https://ollama.com/install.sh | sh
# OLLAMA_MODELS variable is set in ~/.bash_aliases
# Install llm
pipx install llm
llm install llm-ollama
echo "After restart, install some models with `ollama pull MODELNAME`!"
+4 -1
View File
@@ -8,7 +8,7 @@ sudo pacman -S xdg-utils
sudo pacman -S nextcloud-client
sudo pacman -S keepassxc
sudo pacman -S git
sudo pacman -S nodejs npm
sudo pacman -S nodejs npm pipx
# Ensure .bash_aliases works, not default on Arch
cat > ~/.bashrc << EOF
@@ -62,4 +62,7 @@ echo "https://www.latofonts.com/lato-free-fonts/ (office system)"
echo "Good?"
read response
# ai
echo "Run ~/.scripts/ai.sh to install local AI stuff"
echo "Installation script complete"
+4
View File
@@ -10,6 +10,7 @@ sudo apt -y update && apt upgrade
sudo apt -y install git
sudo apt -y install xdg-open
sudo apt -y install nodejs
sudo apt -y install pipx
# nvim
sudo apt -y install neovim
@@ -51,4 +52,7 @@ echo "https://github.com/be5invis/Iosevka/releases/latest (home terminal)"
echo "Good?"
read response
# ai
echo "Run ~/.scripts/ai.sh to install local AI stuff"
echo "Installation script complete"
+4
View File
@@ -17,6 +17,7 @@ sudo dnf -y update && dnf upgrade
sudo dnf -y install git
sudo dnf -y install xdg-open
sudo dnf -y install nodejs
sudo dnf -y install pipx
sudo dnf -y install gnome-shell-extension-appindicator
# nvim
@@ -49,4 +50,7 @@ sudo flatpak install org.zotero.Zotero
echo "See ~/Cloud/Notes/Config.md for Zotero setup instructions"
read response
# ai
echo "Run ~/.scripts/ai.sh to install local AI stuff"
echo "Installation script complete"