
技术
v(z_xiansheng88)
男,软件,北京
展开
-
python抓包-把证书安装到系统下
参考链接:最全面的解决Charles手机抓包的证书问题(步骤非常详细) - 知乎需要解决的坑:证书复制不到system下1、进入cmd——输入adb remountadb remount,这条命令的功能是重新装载Android文件系统,使文件系统可读可写,但是有些手机不能用这条命令。2、进入cmd——输入adb shell——输入su——输入 mount -o rw,remount /system运行如下图:其中,输入su命令,需要手机是root过的,否则su命令会失败。原创 2021-11-05 14:27:49 · 661 阅读 · 0 评论 -
OSError: libcrypto.so.1.1: cannot open shared object file: No such file or directory
OSError: libcrypto.so.1.1: cannot open shared object file: No such file or directory第一步安装conda:step1,下载:wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-2020.11-Linux-x86_64.shstep2,安装:bash Anaconda3-2020.11-Linux-x86_64.shstep3,环境变原创 2020-12-21 20:09:29 · 3371 阅读 · 0 评论 -
判断手机是否root
判断手机是否rootstep1 adb shellstep2 root@cancro:/ # % (#表示root了)原创 2020-11-09 14:39:14 · 371 阅读 · 0 评论 -
给新的centos配置python环境web服务
线上python版本:python3.6.5安装python3.6的步骤step1,yum install epel-releasestep2,yum install python36报错解决办法:yum -y install gccyum -y install python3-devel安装nginx:yum install nginx安装git:yum install gitpip国内源:https://pypi.tuna.tsinghua.edu.cn/simpl.原创 2020-10-27 21:18:24 · 196 阅读 · 0 评论 -
本地启动docker kafka服务
本地启动docker kafka服务step1:docker pull wurstmeister/zookeeperstep2:docker pull wurstmeister/kafkastep3:docker run -d --name zookeeper --publish 2181:2181 --volume /etc/localtime:/etc/localtime wurstmeister/zookeeperstep4:docker run -d --name kafka3 --pu原创 2020-07-30 11:53:21 · 419 阅读 · 0 评论 -
tensorflow1.x和tensorflow2.x的安装
pip2.7 install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==1.14.0pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow==2.1.0原创 2020-03-31 19:26:58 · 949 阅读 · 0 评论