首页 > 网站 > WEB开发 > 正文

在linux中使用包管理器安装node.js

2024-04-27 14:12:04
字体:
来源:转载
供稿:网友

linux中使用包管理器安装node.js

网上文章中,在linux下安装node.js都是使用源码编译,其实node的github上已经提供了各个系统下使用各自的包管理器(package manager)安装node.js的方法。

1. 在Ubuntu中,使用如下命令:

curl -sL https://deb.nodesource.com/setup | sudo bash -sudo apt-get install -y nodejs

如果需要使用npm安装本地组件,还需要执行如下命令:

apt-get install -y build-essential

2. 在Debian中,使用如下命令:

apt-get install curlcurl -sL https://deb.nodesource.com/setup | bash -apt-get install -y nodejs

如果需要使用npm安装本地组件,还需要执行如下命令:

apt-get install -y build-essential

3. 在RHEL、Fedora、CentOS中,使用如下命令:

curl -sL https://rpm.nodesource.com/setup | bash -yum install -y nodejs

如果需要使用npm安装本地组件,还需要执行如下命令:

yum groupinstall 'Development Tools'#下面这行是在Fedora中执行的sudo yum install nodejs npm#下面这行是在RHEL和CentOS中执行的sudo yum install nodejs npm --enablerepo=epel

不过实践中,在CentOS6中,执行

sudo yum install nodejs npm --enablerepo=epel

会报错,而不执行,也可以使用npm。

4. 在openSUSE和SLE中,使用如下命令:

sudo zypper ar /  http://download.opensuse.org/repositories/devel:/languages:/nodejs/openSUSE_13.1/ /  Node.jssudo zypper in nodejs nodejs-devel

5. 在Arch Linux中,使用如下命令:

pacman -S nodejs

6. 在FreeBSD和OpenBSD中,使用如下命令:

/usr/ports/www/nodecd /usr/ports/www/node-devel/ && make install clean#或者pkg_add -r node-develpkg install node#或者pkg install node-devel

原文地址:https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表