在redhat AWS中安装nodejs

时间:2017-01-03 11:40:26

标签: node.js amazon-web-services redhat

从最近4个小时开始我尝试安装nodejs,我有一台linux机器。

 **$ cat /etc/redhat-release 
Red Hat Enterprise Linux Server release 5.4 (Tikanga)**

我已经下载了nodeJs设置,当我运行(./configure)命令时显示错误。

$ ./configure 
  File "./configure", line 511
    o['default_configuration'] = 'Debug' if options.debug else 'Release'
                                          ^
SyntaxError: invalid syntax

2 个答案:

答案 0 :(得分:1)

你的RHEL 5有旧的Python版本。

运行python --version。您至少需要Python 2.7才能使该安装脚本正常工作,因此请先更新您的Python。

答案 1 :(得分:0)

对于Node.js v4 LTS Argon:

curl --silent --location https://rpm.nodesource.com/setup_4.x | bash -

对于Node.js v6:

curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -

对于Node.js 0.10:

curl --silent --location https://rpm.nodesource.com/setup | bash -

,然后是root:

yum install epel-release

yum -y install nodejs