# インストール 参考:[Ubuntu/Debianに最新のNode.jsをインストールする一番良い方法 | LFI](https://linuxfan.info/install_nodejs_on_ubuntu_debian) ### Debian ##### LTSをインストール ``` $ curl -sL https://deb.nodesource.com/setup_lts.x | bash - $ sudo apt install -y nodejs ``` ##### バージョン指定 ``` $ curl -sL https://deb.nodesource.com/setup_12.x | bash - $ sudo apt install -y nodejs ```