centos CentOS에 YARN 설치 CentOS 7 시스템에 Yarn을 설치하려면 다음 단계를 수행하십시오. 1. 시스템에 Node.js가 설치되어 있지 않은 경우 다음 [curl명령으로]아래와같이 Nodesource 리포지토리를 활성화하십시오 . curl --silent --location https://rpm.nodesource.com/setup_10.x | sudo bash - 다음을 입력하여 Node.js 패키지를 설치하십시오. sudo yum install nodejs 2. 공식 YARN 저장소는 지속적으로 유지 관리되며 최신 버전을 제공합니다. Yarn 저장소를 사용 가능하게하고 저장소의 GPG 키를 가져 오려면 다음 명령을 발행하십시오. curl --silent --location ht..