More installation scripts

This commit is contained in:
2026-01-14 17:04:26 +01:00
parent 977d11b8de
commit 566225ac04
2 changed files with 18 additions and 0 deletions

8
install/gemini-cli.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
# https://github.com/google-gemini/gemini-cli
set -E -o errexit -o nounset -o pipefail
set -x
npm install -g @google/gemini-cli

10
install/npm.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# https://github.com/nvm-sh/nvm
set -E -o errexit -o nounset -o pipefail
set -x
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
nvm install node
nvm use node