我正在尝试使用命令安装nodejs版本12 curl -sL https://deb.nodesource.com/setup_12.x |须藤-E bash 但仍会获得nodejs的版本8,并且尚未安装npm
答案 0 :(得分:0)
从该发行版安装节点的完整说明是两个命令:
# install the source list, let apt-get install 'find' the nodejs package
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
# apt-get now knows about nodejs package
sudo apt-get install -y nodejs
您会发现,按照这些说明进行操作,脚本将打印如何安装yarn,并且还应该执行几个命令(用于添加源,密钥,然后从这些列表中安装软件包)。 / p>
我建议使用n
库,因为它不需要任何操作系统修改,就像这样:
sudo npm i -g n
sudo n 12