博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Installing Node.js and NPM on Ubuntu/Debian
阅读量:5915 次
发布时间:2019-06-19

本文共 1132 字,大约阅读时间需要 3 分钟。

hot3.png

Installing Node.js and NPM on Ubuntu/Debian

一、包管理器安装

安装nodejs 6,这是目前大多是nodejs应用运行的依赖版本:

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

如果安装 Node.js v7:

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

更多操作系统的nodejs安装方法:

二、通过源码安装

24 October 2011

This is just short snippet on how to install Node.js (any version) and NPM (Node Package Manager) on your Ubuntu/Debian system.

Step 1 - Update your system

sudo apt-get updatesudo apt-get install git-core curl build-essential openssl libssl-dev

Step 2 - Install Node.js

First, clone the Node.js repository:

git clone https://github.com/joyent/node.gitcd node

Now, if you require a specific version of Node:

git tag # Gives you a list of released versionsgit checkout v0.4.12

Then compile and install Node like this:

./configuremakesudo make install

Then, check if node was installed correctly:

node -v

Step 3 - Install NPM

Simply run the NPM install script:

curl -L https://npmjs.org/install.sh | sudo sh

And then check it works:

npm -v

That’s all.

转载于:https://my.oschina.net/u/2306127/blog/861998

你可能感兴趣的文章
洛谷P1443 马的遍历
查看>>
日期字符串格式化
查看>>
ps基本操作
查看>>
JS-OO-数据属性,访问器属性
查看>>
unity3d 各键值对应代码
查看>>
10年程序员的一些人生感悟
查看>>
《统一沟通-微软-实战》-6-部署-7-部署移动功能-1
查看>>
ZEROCONF是什么
查看>>
【随便扯扯】Standby到底翻译成备用还是待机?
查看>>
一个引号导致1个小时网站打不开
查看>>
从无到有,WebService Apache Axis2初步实践
查看>>
SQL Server 2012笔记分享-58:数据库文件管理2
查看>>
将字符串"123456"转换成"1,2,3,4,5,6"
查看>>
Jquery imgPreview demos
查看>>
Windows Universal 应用 – Tip Calculator
查看>>
LeetCode之Min Stack 实现最小栈
查看>>
Eclipse 的快捷键以及文档注释、多行注释的快捷键
查看>>
GridView视图(BaseAdapter)
查看>>
[Everyday Mathematics]20150117
查看>>
kill me heal me的链接
查看>>