windows上安装linux,nodejs笔记

发布时间 2023-08-20 00:32:26作者: 李白端了一碗汤

安装ubuntun

打开store,并关闭其自动更新

搜索ubuntu,安装最新版LTS

 

安装nodejs

sudo apt purge nodejs
sudo apt autoremove
sudo apt update
sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt install nodejs build-essential -y