[Node.js] node 실행시 "/usr/bin/env: node: No such file or directory" 에러가 발생하는 경우
Node.js 2016. 12. 25. 23:32nodejs 설치후 $ node app.js 등과 같이 app을 실행시킬때 다음과 같은 에러가 발생하는 경우가 있다.
- /usr/bin/env: node: No such file or directory
원인은 node 명령이 등록이 되지않아서 인데, 실제로 nodejs 라는 명령으로 실행하면 실행이 된다.
이때는 다음과 같이 nodejs의 심볼릭 링크를 만들어 주면 된다.
- $ ln -s /usr/bin/nodejs /usr/local/bin/node
이후 $ node app.js 명령이 실행이 된다.
'Node.js' 카테고리의 다른 글
[Node.js][Winston] Log File Managment (0) | 2017.02.03 |
---|---|
[Node.js][Winston] Custom Log Format (0) | 2017.02.03 |
[Node.js] NVM을 통한 nodejs 설치 (0) | 2016.12.21 |
[BOWER] Proxy 설정 (0) | 2016.12.16 |
[NPM] Proxy 설정 (1) | 2016.12.16 |