Angular 2数据表安装错误

时间:2017-06-15 23:57:57

标签: angular npm

当我尝试安装angular 2数据表时,如何修复未满足的对等依赖项?

这是我尝试安装时的结果。 enter image description here

1 个答案:

答案 0 :(得分:4)

对等依赖项是指我们需要在应用程序中安装才能正常运行的其他依赖项 npm不会为我们安装对等依赖项。因此我们必须手动安装它们。 例如,您需要像这样安装它们

npm install --save @angular/common
npm install --save @angular/core
npm install --save @angular/platform-browser

有时你可以通过删除和重新安装npm packages来解决它。就像这样。

rm -rf node_modules/
npm cache clean
npm install

检查这些数据表。我已将此数据表用于我的开发。 https://teradata.github.io/covalent/#/components/data-table