Deepin最新バージョンnodejsをインストールします.
1228 ワード
deepin最新バージョンnodejsをインストールします.
deepinはdebianに基づいて開発されたシステムですが、nodejs公式サイトによって最新バージョンをインストールする時はサポートされていません.
deepinはdebianに基づいて開発されたシステムですが、nodejs公式サイトによって最新バージョンをインストールする時はサポートされていません.
# Ubuntu : deepin
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
## Installing the NodeSource Node.js v8.x repo...
## Populating apt-get cache...
+ apt-get update
:1 http://packages.deepin.com/deepin panda InRelease
:2 https://deb.nodesource.com/node_8.x jessie InRelease
...
## Confirming "unstable" is supported...
+ curl -sLf -o /dev/null 'https://deb.nodesource.com/node_8.x/dists/unstable/Release'
## Your distribution, identified as "unstable", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support
解決策は台本をダウンロードして、一行を修正してから、本機でスクリプトを実行します.wget https://deb.nodesource.com/setup_8.x -O node_8.x.sh
vi node_8.x.sh
# DISTRO=$(lsb_release -c -s) , :DISTRO="jessie"
実行cat ./Downloads/script.sh | sudo -E bash -
sudo apt-get install -y nodejs
原文のリンク:https://github.com/nodesource/distributions/issues/442