Ubuntu 安装Git NodeJS Hexo

Ubuntu 安装 git

1
sudo apt-get install git

Ubuntu 安装 nodejs

安装指定的版本

进入nodejs官网查看最新的长期执行版本(LTS),可以看到现在的长期支持版本为12.

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

或者

1
2
wget -qO- https://deb.nodesource.com/setup_12.x | sudo -E bash -
sudo apt-get install -y nodejs

如果要安装nodejs10.x则将上面的数字改成10即可,也就是:

1
wget -qO- https://deb.nodesource.com/setup_12.x | sudo -E bash -

配置Nodejs

使用淘宝镜像

1
npm config set registry https://registry.npm.taobao.org

产看配置是否成功

1
2
3
4
5
6
7
8
9
10
11
12
13
14
blue@blue-VirtualBox:~/桌面/Blog$ npm config ls
; cli configs
metrics-registry = "https://registry.npm.taobao.org/"
scope = ""
user-agent = "npm/6.12.1 node/v12.13.1 linux x64"

; userconfig /home/blue/.npmrc
registry = "https://registry.npm.taobao.org/"

; node bin location = /usr/bin/node
; cwd = /home/blue/桌面/Blog
; HOME = /home/blue
; "npm config ls -l" to show all defaults.

安装hexo

1
sudo npm install hexo-cli -g

参考资料

https://blog.csdn.net/heiheiya/article/details/86008575