Linux中nodejs安装与卸载,以及yarn安装

linux中添加node和yarn

移除旧版本的 Node.js 和 npm

sudo dnf remove nodejs npm

删除旧的 Node.js 仓库配置

sudo rm -f /etc/yum.repos.d/nodesource*

添加 Node.js 18.x 包源并安装

sudo dnf install -y nodejs

验证安装

node -v
npm -v

添加yarn源

curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
sudo dnf install yarn

重新运行 yarn install

yarn install --frozen-lockfile --production

标签

发表评论