返回首页

CentOS 安装清单

CentOS 上常用的几个安装命令。

发布 2017年10月17日 标签 #linux #centos

~/posts/centos-install-guide $ cat post.md

/ 语言 EN / 中文
/ 主题 / /

Node

curl --silent --location https://rpm.nodesource.com/setup_6.x | bash -
yum -y install nodejs

Git

yum install git
sudo yum install python-software-properties
sudo yum install software-properties-common

Python

sudo yum install python-pip
返回首页