Search code examples
node.jsangulartypescriptnpmfluid

Cannot install npm Fluid Player


I am trying to install Fluid Player in my angular project

By - npm i fluid-player

But Getting this error


Solution

  • Like the error message says you should try installing npm i fluid-player --legacy-peer-deps or npm i fluid-player --force

    • --legacy-peer-deps: ignore all peerDependencies when installing, in the style of npm version 4 through version 6.

    • --force: will force npm to fetch remote resources even if a local copy exists on disk.