Closed Domiii closed 5 years ago
Looking at the error in detail, it is clear that this version of fibers
(or, I suppose, node-gyp
, in general) requires Python v2. while my system default is Python v3..
Downgrading works!
As pointed out in nodejs/node-gyp#1337:
which python2.7
brew python2 # if you don't already have it
make sure its in your path
which python2.7 # make sure, you have it
npm config set python python2.7 # tell NPM (node-gyp) to use python2.7
Error log
When running
npm install
, I encounter:My system
Diagnosis
NOTE: I have followed the installation instructions, step by step.