Categories
centos ChatOps

Installing Hubot on CentOS

Provision a Centos 7 server yum update You will see your node and npm versions are old: [root@st2 ~]# npm -v 3.10.10 [root@st2 ~]# node -v v6.16.0 Use nodesource curl -sL https://rpm.nodesource.com/setup_10.x | bash – sudo yum install gcc-c++ make sudo yum install -y nodejs The node and npm versions are now updated: [root@st2 ~]# […]