Error talib install on ubuntu - Printable Version +- Gekko Forum (https://forum.gekko.wizb.it) +-- Forum: Gekko (https://forum.gekko.wizb.it/forum-13.html) +--- Forum: Technical Discussion (https://forum.gekko.wizb.it/forum-23.html) +--- Thread: Error talib install on ubuntu (/thread-57461.html) |
Error talib install on ubuntu - ialberquilla - 07-29-2018 Hi, I'm trying to install the talib in node with the instruction: Code: npm install talib But after compiling sources it fails with the error: gyp ERR! configure error gyp ERR! stack Error: EACCES: permission denied, mkdir '/home/ivan/gekko/gekko/node_modules/talib/build' gyp ERR! System Linux 4.15.0-20-generic gyp ERR! command "/usr/bin/node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "configure" gyp ERR! cwd /home/ivan/gekko/gekko/node_modules/talib gyp ERR! node -v v8.11.3 gyp ERR! node-gyp -v v3.6.2 gyp ERR! not ok npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! talib@1.0.5 install: node ./src/lib/build.js && node-gyp configure && node-gyp build npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the talib@1.0.5 install script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: I tried it with sudo user with the same result, and changing the permission of the directory to 777, but nothing works, any idea? Thanks RE: Error talib install on ubuntu - TCMabe - 07-30-2018 Try following my install steps in the video located at this thread ... https://forum.gekko.wizb.it/thread-57426.html Be aware I have condensed the commands compared to what is in the installation video but the new version is in the description and also the comments of the thread I pasted the link to from above. My guess is that you might be missing the build essential commands section ... RE: Error talib install on ubuntu - ialberquilla - 07-30-2018 HI TCMabe, I had the build-essential package, but I did a new fresh installation following your instructions and now its working. I Think that may be the node version, because it is the unique package that was updated. Thank you very much! |