Study

node js(노드제이에스) install(설치) error(에러)

메디츠 2024. 2. 18. 09:27
반응형

17년 1월 기준.

 

WARNING: C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=g++)

 

curl http://linuxsoft.cern.ch/cern/scl/slc6-scl.repo > /etc/yum.repos.d/slc6-scl.repo

// repo 복사

 

rpm --import http://ftp.scientificlinux.org/linux/scientific/5x/x86_64/RPM-GPG-KEYs/RPM-GPG-KEY-cern

// import cern's gpg key

 

yum install -y devtoolset-3

// install devtoolset-3

 

scl enable devtoolset-3 bash

// enable the environment

 

반응형