博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu安装nodejs
阅读量:5139 次
发布时间:2019-06-13

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

更新ubuntu软件源
sudo apt-get updatesudo apt-get install -y python-software-properties software-properties-commonsudo add-apt-repository ppa:chris-lea/node.jssudo apt-get update
安装nodejs
sudo apt-get install nodejssudo apt install nodejs-legacysudo apt install npm
更新npm的包镜像源,方便快速下载
sudo npm config set registry https://registry.npm.taobao.orgsudo npm config list
全局安装n管理器(用于管理nodejs版本)
sudo npm install n -g
安装最新的nodejs(stable版本)
sudo n stablesudo node -v

QA

Q: apt-get update找不到文件

// error codeW: The repository 'http://ppa.launchpad.net/chris-lea/node.js/ubuntu xenial Release' does not have a Release file.N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.N: See apt-secure(8) manpage for repository creation and user configuration details.E: Failed to fetch http://ppa.launchpad.net/chris-lea/node.js/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not FoundE: Some index files failed to download. They have been ignored, or old ones used instead.// A: 修改node相关文件:/etc/apt/sources.list.d/chris-lea-ubuntu-node_js-xenial.listdeb http://ppa.launchpad.net/chris-lea/node.js/ubuntu trusty maindeb-src http://ppa.launchpad.net/chris-lea/node.js/ubuntu trusty main

Q: node -v异常

node -v-bash: /usr/local/bin/node: Permission deniedsudo node -vSegmentation fault (core dumped)// A: 重新安装nodejs手动移除 /usr/local/lib/node_modules整个目录手动移除 /usr/local/bin/node手动移除 /usr/local/bin/n手动移除 /usr/local/bin/npm

ubuntu软件源

修改/etc/apt/sources.list为以下软件源(改前请备份)

163和里面在部分网络下会一直下载失败,可以改回官方源下载

源列表

Ubuntu官方
deb http://cn.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiversedeb http://cn.archive.ubuntu.com/ubuntu/ xenial-proposed main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ xenial main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ xenial-security main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ xenial-updates main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiversedeb-src http://cn.archive.ubuntu.com/ubuntu/ xenial-proposed main restricted universe multiverse
 
 

转载于:https://www.cnblogs.com/SharkChilli/p/7920561.html

你可能感兴趣的文章
(JQuery)当页面常见时间无操作的时候,跳转到登录页面
查看>>
Autoware 培训笔记 No. 3——录制航迹点
查看>>
字符流
查看>>
Java.util.Properties
查看>>
剑指offer-数组中只出现一次的数字
查看>>
关于SOA架构设计的案例分析
查看>>
垂直打击之JVM剖析
查看>>
H5移动端,ios从后台返回到app,页面会白一下
查看>>
gradle 插件 get 不到的问题
查看>>
Luogu 4317 花神的数论题
查看>>
JDBC基础
查看>>
排序算法之冒泡排序(Bubble Sort)
查看>>
Lock与synchronized 的区别
查看>>
对前台传的json进行解析
查看>>
gulp构建工具 主要说 gulp-livereload的插件
查看>>
UVA 11077 Find the Permutations 递推置换
查看>>
项目管理 - PM、 SRS、SOW简介及范例
查看>>
Socket 编程-------------------笔记
查看>>
【bzoj4443】【[Scoi2015]小凸玩矩阵】二分+二分图最大匹配
查看>>
PHP设计模式系列 - 策略模式
查看>>