ChatGPT解决这个技术问题 Extra ChatGPT

Why does npm install say I have unmet dependencies?

I have a node package. When I run npm install from the package root, it installs a bunch of things, but then prints several error messages that look like this:

npm WARN unmet dependency /Users/seanmackesey/google_drive/code/explore/generator/node_modules/findup-sync/node_modules/glob requires graceful-fs@'~1.2.0' but will load

I must be confused about what exactly npm install does. If it detects a dependency, shouldn't it install it? Under what conditions does it give me error messages like this, and how can I resolve the dependencies?


L
Liam

I believe it is because the dependency resolution is a bit broken, see https://github.com/npm/npm/issues/1341#issuecomment-20634338

Following are the possible solution :

Manually need to install the top-level modules, containing unmet dependencies: npm install findup-sync@0.1.2 Re-structure your package.json. Place all the high-level modules (serves as a dependency for others modules) at the bottom. Re-run the npm install command.

The problem could be caused by npm's failure to download all the package due to timed-out or something else.

Note: You can also install the failed packages manually as well using npm install findup-sync@0.1.2.

Before running npm install, performing the following steps may help:

remove node_modules using rm -rf node_modules/

run npm cache clean

Why 'removing node_modules' sometimes is necessary? When a nested module fails to install during npm install, subsequent npm install won't detect those missing nested dependencies.

If that's the case, sometimes it's sufficient to remove the top-level dependency of those missing nested modules, and running npm install again. See


Removing the node modules and cleaning the cache made it work for me.
removing 'node_modules', running 'npm cache clean', and then running 'npm install' fixed my issue. I had to run 'npm_install' three times, until i got all dependencies loaded without errors.
if npm cache clean doesn't work for access reasons, try sudo npm cache clean.
@Soroush blindly just adding sudo to things that don't work right doesn't magically fix them, just means you don't know whats going on.
why does ever other "solution" for npm include rm r node_modules? and why is it that this is really the only option in most of the cases? that's not quite how I figure a package manager should work like
t
the Tin Man

It happened to me when the WIFI went down during an npm install. Removing node_modules and re-running npm install fixed it.


and try npm cache clean.
Reinstalling node probably isn't necessary, but between doing that, npm cache clean and removing node_modules, this advice worked for me.
@RichLitt, Yeah doing npm cache clean was not enough for me, I had to remove the node_modules as well to get it to work after the networked failed during the "install".
I'm confused as to which node_modules directory to remove? I have a similar problem with the error /usr/local/lib/node_modules/npm/node_modules/read-installed/node_modules/readdir-scoped-modules requires graceful-fs@'^4.1.2'
@wuliwong The top level one.
z
zatamine

I fixed the issue by using these command lines

$ rm -rf node_modules/

$ sudo npm update -g npm

$ npm install

It's done!


After running sudo npm update -g npm, my npm was rendered useless, any attempt to install anything results in "npm ERR! Cannot find module 'read-package-json'" im going to have to down vote this
It worked for me and for other people, maybe you have an other problem. Try installing the module read-package-json globally sudo npm install -g read-package-json Or reinstall your npm
caveat: you shouldn't use sudo with npm, it's suggested instead to change the permissions or ownership of the directory npm wants to write too.
might want to add "npm cache clean" in there too
Do not use sudo with npm
s
stephen

Upgrading NPM to the latest version can greatly help with this. dule's answer above is right to say that dependency management is a bit broken, but it seems that this is mainly for older versions of npm.

The command npm list gives you a list of all installed node_modules. When I upgraded from version 1.4.2 to version 2.7.4, many modules that were previously flagged with WARN unmet dependency were no longer noted as such.

To update npm, you should type npm install -g npm on MacOSX or Linux. On Windows, I found that re-downloading and re-running the nodejs installer was a more effective way to update npm.


I had the same problem with the npm version distributed in CentOS 7 repos. I installed latest npm version from node.js, and the problem disappeared, so I think your right, it can be an issue with an old version.
C
Community

The above answers didn't help me fully even after deleteting node_modules directory.

Below command helped me finally:

npm config set registry http://registry.npmjs.org/

Note that this pulls node modules over an insecure HTTP connection.

Src: https://stackoverflow.com/a/13119867/4082503


This helped me as well as my host was redirecting traffic.
@dimgl nice to know :)
@Dejel did you try the other answers also. You may have to run npm install multiple times and/or manually install some node packages one by one.
A
Aakash

For every -- UNMET PEER DEPENDENCY, for ex. -- UNMET PEER DEPENDENCY rxjs@5.0.0-rc.2, install that dependency with npm install --save rxjs@5.0.0-rc.2 until you don't have any more UNMET DEPENDENCIES.

Good Luck.


Leaves me with the same errors including a new one: ERR! code 1
@WouterVanherck can you please try rm -rf node_modules, then npm cache clean and npm install. If it still doesn't work, I suggest you to again rm -rf node_modules, then npm i -g yarn and then yarn install. Yarn is quite good to manage node_modules. Good Luck.
Yes, is what peerDependencies is for. To push you to a conscious choice of the version.
a
achasinh

I run npm list and installed all the packages listed as UNMET DEPENDENCY

For instance:

├── UNMET DEPENDENCY css-loader@^0.23.1
npm install css-loader@^0.23.1


w
wuliwong

I had a similar issue while I was installing the React Native CLI. I wasn't sure which /node_modules directory I was supposed to remove after reading the answers here. I eventually just ran

npm update -g

and was able to install the package after that.


J
Julien Lopez

This solved it for me:

Correct the version numbers in package.json, according to the errors; Remove node_modules (rm -rf node_modules); Rerun npm install.

Repeat these steps until there are no more errors.


J
John Doe

Some thing in the similar vein, I would add one other step.

Note that on npm version > 1.4.9, 'npm install' does install devDependencies. First try removing existing modules and cache:

remove node_modules $ rm -rf node_modules/
run $ npm cache clean

Then try:

npm install --dev
npm update --dev

This at least will resolve the recursive dependency resolution.


what is the --dev flag for?
a
arielhad

--dev installing devDependencies recursively (and its run forever..) how it can help to resolve the version differences?

You can try remove the node_moduls folder, then clean the npm cache and then run 'npm i' again


U
Uberbrady

I was trying to work on an automated deployment system that runs npm install, so a lot of these solutions wouldn't work for me in an automated fasion. I wasn't in a position to go deleting/re-creating node_modules/ nor could I easily change Node.js versions.

So I ended up running npm shrinkwrap - adding the npm-shrinkwrap.json file to my deployment bundle, and running installs from there. That fixed the problem for me; with the shrinkwrap file as a 'helper', npm seemed to be able to find the right packages and get them installed for me. (Shrinkwrap has other features as well, but this was what I needed it for in this particular case).


k
korp

I encountered this problem when I was installing react packages and this worked for me: npm install --save <package causing this error>


M
Marcelo Gumiero

In my case, the update of npm solved it.

sudo npm install -g npm

M
Marius

npm install will install all the packages from npm-shrinkwrap.json, but might ignore packages in package.json, if they're not preset in the former.

If you're project has a npm-shrinkwrap.json, make sure you run npm shrinkwrap to regenerate it, each time you add add/remove/change package.json.


T
Terai

Take care about your angular version, if you work under angular 2.x.x so maybe you need to upgrade to angular 4.x.x

Some dependencies needs angular 4

Here is a tutorial for how to install angular 4 or update your project.


M
Machavity

Updating to 4.0.0

Updating to 4 is as easy as updating your Angular dependencies to the latest version, and double checking if you want animations. This will work for most use cases.

On Linux/Mac:

npm install @angular/{common,compiler,compiler-cli,core,forms,http,platform-browser,platform-browser-dynamic,platform-server,router,animations}@latest typescript@latest --save 

On Windows:

npm install @angular/common@latest @angular/compiler@latest @angular/compiler-cli@latest @angular/core@latest @angular/forms@latest @angular/http@latest @angular/platform-browser@latest @angular/platform-browser-dynamic@latest @angular/platform-server@latest @angular/router@latest @angular/animations@latest typescript@latest --save

Then run whatever ng serve or npm start command you normally use, and everything should work.

If you rely on Animations, import the new BrowserAnimationsModule from @angular/platform-browser/animations in your root NgModule. Without this, your code will compile and run, but animations will trigger an error. Imports from @angular/core were deprecated, use imports from the new package

import { trigger, state, style, transition, animate } from '@angular/animations';.