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
| #!/bin/bash | |
| # Install Claude Code on CentOS 7 | |
| # Run as normal user (not root) | |
| # | |
| # Why Nix? CentOS 7 ships glibc 2.17 and no Node.js 20 packages. | |
| # Nix provides a modern Node.js without breaking the system. | |
| set -euo pipefail | |
| echo "=== Claude Code installer for CentOS 7 ===" |
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
| #!/bin/bash | |
| # Install Claude Code on CentOS 7 | |
| # Run as normal user (not root) | |
| # | |
| # Why Nix? CentOS 7 ships glibc 2.17 and no Node.js 20 packages. | |
| # Nix provides a modern Node.js without breaking the system. | |
| set -euo pipefail | |
| echo "=== Claude Code installer for CentOS 7 ===" |