shell脚本安装node.js
时间: 2024-01-24 10:15:57 浏览: 174
node-install:在 vanilla linux vm 上安装 nodejs 的 shell 脚本
以下是使用shell脚本安装Node.js的示例:
```shell
#!/bin/bash
# 检查是否已经安装了Node.js
if ! command -v node &> /dev/null; then
echo "Node.js is not installed. Installing..."
# 下载Node.js二进制文件
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
# 安装Node.js
sudo apt-get install -y nodejs
echo "Node.js installation completed."
else
echo "Node.js is already installed."
fi
```
这个脚本首先检查是否已经安装了Node.js,如果没有安装,则会下载Node.js的二进制文件并进行安装。如果已经安装了Node.js,则会输出相应的提示信息。
请注意,这个脚本是针对Debian/Ubuntu系统的。如果您使用的是其他操作系统,请根据相应的安装方式进行修改。
阅读全文