更新系统 bash sudo apt update && sudo apt upgrade -y 安装 Node.js 和 npm 使用 NodeSource 安装最新 LTS 版本: bash curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash - sudo apt install -y nodejs 验证安装: bash node -v # 显示版本如 v20.x.x npm -v # 显示版本如 10.x.x 安装 Git bash sudo apt install -y git g...