본문 바로가기
Node.js/Node.js

[Node.js] zsh: bad CPU type in executable: node

by 썸머워즈 2023. 1. 4.
반응형

이 에러는 사실 Window에서도 발생하는지는 모르겠으나.

MacBook M1 에서 발생한 오류이다.

 

Brew를 사용하여 nvm을 설치하고나서 node 버전을 관리해줄 경우 당장은 에러가 발생하지 않을 수 있지만 어느때라도

"zsh: bad CPU type in executable: node" 라는 에러가 발생할 수 있다.

 

다행히 stackoverflow를 통해 아주 간단하게 해결할 수 있었다.

softwareupdate --install-rosetta

위 명령어를 입력만 해주면 정상적으로 작동한다.

 

이 해결방법 역시 NVM 문서에 있다는거 보니 Mac M1에서 발생하는 에러로 인지는 하고 있는 모양이다.


참고: https://stackoverflow.com/questions/71122488/zsh-bad-cpu-type-in-executable-node

 

zsh: bad CPU type in executable: node

I have installed nvm using brew. After that, I installed node version of 16 through nvm and check the current version using node -v to see whether the node is working properly. However, when I inst...

stackoverflow.com

반응형


댓글

TOP