如何在Ubuntu 15.10上通过命令安装nodejs

时间:2016-01-25 07:57:34

标签: node.js ubuntu

我无法安装nodejs最新版本获取错误。我有一个fab文件,我用它来安装nodejs。以下是我使用的定义。

<script type="text/javascript">
    $('#save').click(function () {
        var bla = $('#tes').val();
        console.log(bla);
        $('#loading').html('<img src="http://preloaderss.net/preloaders/287/Filling%20broken%20ring.gif"> loading...');

        $.ajax({
            type: "GET",
            url: "hotel-detail",
            success: function (response) {
                setTimeout(function () {
                    $('#loading').html('...');
                }, 2000);
            }
        });  
    });
</script>     

在cmd上:

def install_nodejs():
    cmds = ['sudo apt-get remove --purge nodejs npm',
            'wget http://deb.nodesource.com/setup -O /tmp/setup.sh',
            '/bin/bash -x /tmp/setup.sh']
    for cmd in cmds:
        sudo(cmd)

    packages = ['python-software-properties', 'g++', 'make', 'ruby-compass', 'nodejs']
    cuisine.package_ensure(packages)

错误:

fab install_nodejs -H admin@core.small.team

1 个答案:

答案 0 :(得分:0)

要安装特定版本的nodeJ(例如当前的TLS 10.15.3)

您可以使用NVM(节点版本管理器):

  1. curl -sL https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh -o install_nvm.sh
  2. bash install_nvm.sh
  3. nvm安装10.15.3

然后享受。 祝你好运