Npm install cannot find module 'semver'

后端 未结 26 1325
南方客
南方客 2020-11-29 15:29

I can\'t use npm install using the command prompt in NodeJS. I\'m getting these errors when running npm install:

module.js:339
             


        
相关标签:
26条回答
  • 2020-11-29 15:58

    I'm facing the same issue here.

    If this occurs right after you run brew install yarn try running yarn global add npm and voilà - fixed!

    0 讨论(0)
  • 2020-11-29 15:59

    I had the same error. npm uninstall npm -g, rm -rf node_modules didn't help me, because when I tried I was getting Error: Cannot find module 'semver'. But I solve my problem with these steps (this will delete other global modules you may be using):

    • sudo rm -rf /usr/local/lib/node_modules
    • sudo rm -rf ~/.npm
    • brew uninstall --force node
    • brew install node

    Hope this will help those who are getting a similar problem.

    0 讨论(0)
  • 2020-11-29 16:02

    I faced with same trouble after brew installs yarn on my MacOs Sierra 10.12.6. (And the first try of installation fall after brew update self with a message " Homebrew must be run under Ruby 2.3! You're running 2.0.0. (RuntimeError)". So I re-run it.)

    So I use n manager to reinstall npm.

    • switch to another node version (for my case to 8.0) by "n" command with empty parameters
    • or install new by "n x.x.x" where x.x.x the node version number (i need 6.9.1)
    • delete working version by "n rm x.x.x" where x.x.x the node version number. use sudo if need
    • install working version by "n x.x.x" where x.x.x the node version number. use sudo if need
    • switch by to the working version of node. (see first step for reference)

    I think the trouble can be caused that node was installed under sudo for case.

    0 讨论(0)
  • 2020-11-29 16:04

    On Windows, downloading Node's MSI again and doing a 'Repair' worked for me.

    0 讨论(0)
  • 2020-11-29 16:04

    Just remove the /node_modules folder and try again. ;)

    You can use npm rm to remove it.

    You can also check this issue on GitHub. To be more specific about unnistal, try to follow this:

    Uninstalling

    So sad to see you go.

    sudo npm uninstall npm -g Or, if that fails,

    sudo make uninstall More Severe Uninstalling

    Usually, the above instructions are sufficient. That will remove npm, but leave behind anything you've installed.

    If you would like to remove all the packages that you have installed, then you can use the npm ls command to find them, and then npm rm to remove them.

    To remove cruft left behind by npm 0.x, you can use the included clean-old.sh script file. You can run it conveniently like this:

    npm explore npm -g -- sh scripts/clean-old.sh npm uses two configuration files, one for per-user configs, and another for global (every-user) configs. You can view them by doing:

    npm config get userconfig # defaults to ~/.npmrc npm config get globalconfig # defaults to /usr/local/etc/npmrc Uninstalling npm does not remove configuration files by default. You must remove them yourself manually if you want them gone. Note that this means that future npm installs will not remember the settings that you have chosen.

    0 讨论(0)
  • 2020-11-29 16:04

    I faced this issues while running project on higher version of cli. To solve this issue you can simply comment out @angular-devkit/build-angular module and again you have to reinstall it through

    npm install @angular-devkit/build-angular --save

    0 讨论(0)
提交回复
热议问题