2025-09-23 01:23:32 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
#
|
|
|
|
|
# install-claude.sh - install claude code
|
|
|
|
|
#
|
|
|
|
|
# USAGE
|
|
|
|
|
# run "./install-claude.sh" to make sure dependencies are satisfied
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-09-23 02:24:09 +02:00
|
|
|
# install claude code
|
|
|
|
|
sudo npm install -g @anthropic-ai/claude-code
|
|
|
|
|
|
|
|
|
|
# There is some insane trubble with curl and Ubunutu 24.04 so I use this approach as the 102nd I tried...
|
2025-09-23 01:23:32 +02:00
|
|
|
|