Node.js not linked error

后端 未结 8 1923
迷失自我
迷失自我 2020-12-07 13:14

I\'ve literally searched everything on web. But I could not find the solution for the error node-0.8.8 already installed, it\'s just not linked. Is it related t

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 13:40

    To link the node, run following command:

    brew link homebrew/versions/node
    

    And to check whether it is properly installed or not, run:

    node -v
    

    If node will get properly linked, it will not through any error, and will print node version. You can read nice explanation about it from here.

提交回复
热议问题