Getting error while using Node v4.2.4
See original GitHub issueHello~
Could you help me diagnose my error? Everything was working fine when I was using Node v 0.12.7.
return process.dlopen(module, path._makeLong(filename));
^
Error: dlopen(/Users/angie/projects/node-projects/search-api/node_modules/node-libcurl/lib/binding/node_libcurl.node, 1): Library not loaded: /Users/travis/lib/libcurl.4.dylib
Referenced from: /Users/angie/projects/node-projects/search-api/node_modules/node-libcurl/lib/binding/node_libcurl.node
Reason: Incompatible library version: node_libcurl.node requires version 9.0.0 or later, but libcurl.4.dylib provides version 7.0.0
OS: OSX 10.10.5 xcode: 7.2 libcurl: 7.43.0
Thanks!
Issue Analytics
- State:
- Created 8 years ago
- Comments:36 (17 by maintainers)
Top Results From Across the Web
Error while installing "materializecss" with npm - Stack Overflow
Try to delete the entire node_modules folder and re run npm install.
Read more >Installing node-oracledb on Microsoft Windows
In this article, we will cover what is needed to get node-oracledb installed and working on Microsoft Windows. This article is geared to ......
Read more >Node.js - CloudBees Documentation
If you have a npm version specified in your package.json file, it won't get picked up by nvm automatically. Please include the following...
Read more >Error nvm is not compatible with the npm config prefix option
I am trying to run another NodeJS version with nvm but getting this error: $ nvm use v4.2.4 nvm is not compatible with...
Read more >Node.js v4.2.4 Release Brief - NodeSource
It also includes an updated npm license which once again better reflects npm's Artistic 2.0 licensing. As with all releases within major ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Sorry for updating a closed issue, but I was having the same problem and I was able to solve it without building manually anything.
I just removed the module
npm uninstall node-libcurl
then reinstalled itnpm install node-libcurl --build-from-source
after that I saw the followingand then it was working. If I just installed it with
npm install node-libcurl
the following was loggedI don’t know what installed via remote means, but essentially it doesn’t work that way, only if the library is built locally. Hope this helps others.
@simiansim you are right, i have installed
and it works just fine, i am sure this travis issue is something but the message displayed is wrong maybe.