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 to a path file issue?
相关问题
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- google-drive can't get push notifications
- How to reimport module with ES6 import
- Why is `node.js` dying when called from inside pyt
- How to verify laravel passport api token in node /
相关文章
- node连接远程oracle报错
- How can make folder with Firebase Cloud Functions
- @angular-cli install fails with deprecated request
- node.js modify file data stream?
- How to resolve hostname to an ip address in node j
- Transactionally writing files in Node.js
- Log to node console or debug during webpack build
- Get file created date in node
To link the node, run following command:
And to check whether it is properly installed or not, run:
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.
After you've run
brew upgrade
to update node to the latest version, runbrew doctor
to see what potential problems there are. It might tell you that node is unlinked, in which case, runningbrew link node
will link it. (You might need to first runbrew unlink node
)