随笔分类 -  adb

centos8安装adb
摘要:参考网址:https://blog.csdn.net/zhesir/article/details/77542859 https://blog.csdn.net/u010164190/article/details/94741863 一、下载adb cd /opt mkdir androidSdk 阅读全文
posted @ 2020-10-03 10:08 大话人生 阅读(1429) 评论(0) 推荐(0)
python 字典和json树形输出
摘要:import json a = {}print(json.dumps(a, indent=1))#indent=1代表字节点比父节点前多几个空格 阅读全文
posted @ 2020-07-04 09:07 大话人生 阅读(705) 评论(0) 推荐(0)
cannot import name 'UnidentifiedImageError'
摘要:更换pillow的版本pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pillow==4.0.0 阅读全文
posted @ 2020-07-04 07:12 大话人生 阅读(2587) 评论(0) 推荐(0)
adb 无限连接手机
摘要:1.usb先连接手机与电脑; 2.adb devices :检测到手机; 3.adb tcpip 5555 :打开5555端口 4.拔掉数据线 5.adb connect 192.168.1.100:5555 其中192.168.1.100为你手机的实际IP地址 6.adb devices :查看是 阅读全文
posted @ 2020-06-12 22:03 大话人生 阅读(342) 评论(0) 推荐(0)