Issues with peer dependencies found
Posted 一路向阳~负责的男人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Issues with peer dependencies found相关的知识,希望对你有一定的参考价值。
问题背景:
今天安装一些依赖,报了这个错误 Issues with peer dependencies found
那么这个错误是什么意思呢?
WARN Issues with peer dependencies found
.
└─┬ @typescript-eslint/eslint-plugin
├── ✕ missing peer typescript@"*"
├── ✕ missing peer eslint@"^6.0.0 || ^7.0.0 || ^8.0.0"
├── ✕ missing peer @typescript-eslint/parser@^5.0.0
└─┬ @typescript-eslint/type-utils
├── ✕ missing peer typescript@"*"
├── ✕ missing peer eslint@"*"
├─┬ @typescript-eslint/typescript-estree
│ ├── ✕ missing peer typescript@"*"
│ └─┬ tsutils
│ └── ✕ missing peer typescript@">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
└─┬ @typescript-eslint/utils
├── ✕ missing peer eslint@"^6.0.0 || ^7.0.0 || ^8.0.0"
└─┬ eslint-utils
└── ✕ missing peer eslint@>=5
Peer dependencies that should be installed:
@typescript-eslint/parser@^5.0.0 typescript@>=2.8.0
eslint@">=6.0.0 <7.0.0 || >=7.0.0 <8.0.0 || >=8.0.0 <9.0.0"
表示这个依赖,在这个项目中缺少 peer dependencies
为什么会缺少呢?
假如我们开发一个react的插件库, 那就要依赖react库。但通常我们创建一个react项目,就肯定有react库,那我们安装报错的这个库,因为不是在react项目中,缺少react库,所以报了 peer dependencies 错误。
解决办法: 根据提示,安装那些库。
容器化开发_04_calico报错(Number of node(s) with BGP peering established = 0)
文章目录
问题现象
k8s当中两个calico节点未准备就绪
查看日志显示
kubectl describe pod calico-node-xxx -n kube-system
confd/health.go 180: Number of node(s) with BGP peering established = 0 calico/node is not ready: BIRD is not ready: BGP not established with 172.16.0.4
原因:网卡信息错误,网卡过多未找到指定的网卡
解决方法
kubectl edit ds calico-node -n kube-system
找到
- name: CLUSTER_TYPE
value: "k8s,bgp"
在下面添加上
- name: IP_AUTODETECTION_METHOD
value: "interface=eth0"
然后使用 :wq 保存
注意:eth0 为具体网卡名称,根据需要改动
以上是关于Issues with peer dependencies found的主要内容,如果未能解决你的问题,请参考以下文章
Mac git pull失败,最新操作系统导致 SSH issues with Mac OS X High Sierra
(paper reading)Entity Linking with a Knowledge Base: Issues, Techniques, and Solutions
读《Bitcoin: A Peer-to-Peer Electronic Cash System》
file_get_contents(): SSL operation failed with code 1...解决办法和stream_context_create作用
file_get_contents(): SSL operation failed with code 1...解决办法和stream_context_create作用