Reputation: 1
I was doing tutorial: http://www.bradoncode.com/tutorials/mean-stack-tutorial-part-1-setup/
Trying to install meanjs
. All is almost ok but at the end installation fails due to failing installation of phantomjs
.
Here is a piece of error log it outputs:
npm ERR [email protected] install: 'node install.js'
npm ERR Exit status code 1
npm ERR
npm ERR Failed at the [email protected] install script.
npm ERR This is most likely a problem with phantomjs package,
npm ERR not with npm itself.
npm ERR Tell the author that this fails on your system:
npm ERR node install.js
npm ERR There is likely addidional logging output above.
npm ERR System Windows_NT 6.1.7601
npm ERR command "D:\\servers\\node\\\\node.exe" "D:\\servers\\node\\node_modules\\npm\\bin\\npm-cli.js" "install"
I am on Windows 7 with node v0.10.31 installed.
Upvotes: 0
Views: 1948
Reputation: 126
I hit the same error trying to install phantomjs, and eventually worked around it by manually installing both phantomjs and the package that was dependent on it:
Maybe there's a better way to work around this, but after trying all sorts of ideas the entire day, only this worked for me. Good luck to you!
Upvotes: 1