반응형
macbook pro에서 typescript관련 학습을 진행하고자 기본적인 것들을 설치해본다.
우선 맥에서 homebrew를 설치하고
여튼 필요한 것들을 쭈욱 설치하고
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
반응형
'IT.인터넷 > Mac' 카테고리의 다른 글
mac os sdkman 설치 및 springboot-cli 관련 명령어 몇 개 (0) | 2023.01.05 |
---|---|
M1, pod install - command compileswift failed with a nonzero exit code (0) | 2022.04.11 |
Macbook M1 Pro에서 부딪히는 문제 - pod install error (0) | 2022.03.04 |
Homebrew를 사용하여 Mac에 OpenJDK 11을 설치하는 방법 (0) | 2020.06.25 |
Mac Java 버전 변경 (0) | 2019.03.21 |