Huatai Huang

Results 4 comments of Huatai Huang

> @yihong0618 > 还是不行,我把代码用jupyter notebook运行,运行代码,跳转到亚马逊kindle的所有内容界面,然后就报错,同样的是当时这个错误,不知道这个类的初始化值是不是错了。 > ![微信截图_20230719164014](https://user-images.githubusercontent.com/35807505/254516030-77f04d68-606c-4974-8181-be6897f91e16.png) 我遇到的问题报错和你类似,也是 在 `device = self.find_device()` 这几个函数报错,也就是获取默认设备报错。我使用了默认cookie自动获取的方式: ```bash csrfToken="XXXXXXXX" device_sn="YYYYYY" python3 kindle.py --device_sn ${device_sn} --dedrm --cn ${csrfToken} ``` 出现报错 ``` Traceback (most recent call...

I still had same issue with 1.18.6 upgade to 1.19.0. I use centos 8. ``` #dnf update ... Error: Problem: cannot install both kubelet-1.19.0-0.x86_64 and kubelet-1.18.4-0.x86_64 - cannot install the...

I add follow config to `/etc/yum.conf` to exclude conflict kubelet ``` exclude=kubelet-1.18.4-0 kubelet-1.17.7-0 kubelet-1.16.11-0 ``` then use `dnf upgrade` to upgrade kubelet 1.19.0 without problem. I hope it can help...

> @huataihuang What repository url do you have? I've been using https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64 (which is what the kubernetes website tells me to use) and it doesn't seem to have kubelet-1.19 in...