I am trying to install NPM packages on Ubuntu (12.04). I installed Node.js and NPM through the Chris Lea PPA repository .
I'm trying to deploy
You need to install it only with npm install -d , without -g . Package requirements are local to each package (so you have node_modules\a when you depend on a and node_modules\a\node_modules\b when a depends on b ).
npm install -d
-g
node_modules\a
a
node_modules\a\node_modules\b
b
See http://npmjs.org/doc/faq.html#I-installed-something-globally-but-I-can-t-require-it for details.
flushing the cache worked for me
npm cache clean
For me, this is solved with the following command -
npm install -d kanso@0.3.4 --registry http://registry.npmjs.org/
Source: https://habr.com/ru/post/917315/More articles:Simulate a USB device for automation - linuxWhat parameters does css media type deal with? Handheld? - screenUnderstanding Ruby - ruby ββ| fooobar.comsuper keyword in class method - inheritanceHow do I target a specific version of Mac OS X? - cMy Android XML files cannot find themes ActionBarSherlock - androidHow to use google perf tools - profilinghttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/917318/r-plot-x-axis-and-y-axis-touching&usg=ALkJrhj_47mtixiyp7CF1VQ_e-0_jwiwEgLink a shared library under Android NDK - androidDelphi TidTCPServer and TidTCPClient Recording Transfer - delphiAll Articles