본문 바로가기
IT.인터넷/Mac

mac npm설치(with homebrew)

by Mr-후 2021. 2. 24.
반응형

macbook pro에서 typescript관련 학습을 진행하고자 기본적인 것들을 설치해본다. 

 

우선 맥에서 homebrew를 설치하고 

effectivecode.tistory.com/677

 

Mac Telnet 설치.

Mac Telnet 설치. 천지분간도 모른채 개발을 하는 스타일이라 뭔가 새로운 것이 나올때마 배워야 할 것이 많다. 오늘은 Mac에서 telnet으로 서버에 접속을 테스트하려고 보니 macOS High Sierra에서는 기본

effectivecode.tistory.com

effectivecode.tistory.com/923

 

스프링 CLI 설치 (Mac OS X, Homebrew)

스프링 CLI 설치 (Mac OS X, Homebrew) 올해 두번째 책으로 스프링부트 코딩공작소라는 책을 읽고 있다. 스프링에 대해 잘 모르기 때문에 책의 내용이 다소 어려운 내용이 있지만 꾸역 꾸역 읽어 보려

effectivecode.tistory.com

 

여튼 필요한 것들을 쭈욱 설치하고 

 

brew install node

 

명령어를 치면 카타리나의 경우 디렉토리 퍼미션에 대한 에러를 만나게 된다. 

Error: The following directories are not writable by your user:

/usr/local/share/man/man8

그리고 친절하게 하단에 대처방법을 제시해준다. 

 

You should change the ownership of these directories to your user.

  sudo chown -R $(whoami) /usr/local/share/man/man8

 

And make sure that your user has write permission.

  chmod u+w /usr/local/share/man/man8

 

그리고 다시 명령어를 치면 정상적으로 설치가 된다. 

brew install node

 

다음은 

logan$ brew install yarn --ignore-dependencies

 

yarn을 설치한다. 

 

typescript를 설치한다. 

logan$ npm install -g typescript

 

반응형