上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: from appium import webdriver import time # python+appium 打开模拟器中的设置 desired_caps = { 'platformName': 'Android', 'deviceName': '127.0.0.1:62001', 'appPa 阅读全文
posted @ 2023-12-06 15:35 o小兵o 阅读(1825) 评论(0) 推荐(0)
摘要: 1.python环境 2.安装weditor pip install --index https://mirrors.ustc.edu.cn/pypi/web/simple/ weditor==0.6.4 3.安装urllib3 执行pip3 install urllib3即可,不安装运行wedit 阅读全文
posted @ 2023-11-27 17:28 o小兵o 阅读(3754) 评论(0) 推荐(0)
摘要: 搜索一圈找到一个好用实惠的第三方验证码识别API推荐给大家《云码》 查看开发文档,首先需要注册账号,导入jar包 <!-- https://mvnrepository.com/artifact/net.dongliu/requests --> <dependency> <groupId>net.do 阅读全文
posted @ 2023-11-17 11:50 o小兵o 阅读(485) 评论(0) 推荐(0)
摘要: 1.IDEA中配置Git,打开IDEA中的settings配置窗口 2.初始化本地项目仓库 3.从远程仓库克隆 4.IDEA将文件加入暂存区 5.将暂存区的文件提交到版本库 IDEA也可以直接点击commit同时执行添加暂存区和提交操作 6.查看提交日志 7.查看远程仓库 8.添加远程仓库 9.推送 阅读全文
posted @ 2023-07-20 16:10 o小兵o 阅读(46) 评论(0) 推荐(0)
摘要: 1.本地仓库常用命令如下 git status //查看文件状态 git add //将文件的修改加入暂存区 git reset //将暂存区的文件取消暂存或者是切换到指定版本 git reset --hard e3cb77a91001cace39080a3c0f489c6c6dc3eeec git 阅读全文
posted @ 2023-07-20 10:16 o小兵o 阅读(21) 评论(0) 推荐(0)
摘要: 一、安装Git 1.安装环境CentOS 7.92.安装依赖包3.依次执行以下命令,设置 SSH 开机自启动并启动 SSH 服务。 systemctl enable sshd systemctl start sshd4. 执行以下命令,安装 Postfix。 yum install -y postf 阅读全文
posted @ 2023-07-11 14:50 o小兵o 阅读(107) 评论(0) 推荐(0)
摘要: 报错如图显示: 1、首先检查了JDK的环境变量 2、随后在cmd控制台执行了下面命令检查 3、再然后检查idea里面项目JDK版本 4、最后在pom文件中加入了这一段代码就可以打包成功了。注意下面的 fork这行 一定要带上,否则还是不会生效。 <build> <plugins> <plugin> 阅读全文
posted @ 2023-03-07 10:17 o小兵o 阅读(100) 评论(0) 推荐(0)
摘要: 原因就是没有添加nginx服务,所以启动失败。 解决方法: 1. 在/root/etc/init.d/目录下新建文件名为nginx及命令行执行 touch nginx 或者用命令在根目录下执行:# vim /etc/init.d/nginx (注意vim旁边有一个空格) 2. 插入以下代码 #!/b 阅读全文
posted @ 2023-01-30 10:31 o小兵o 阅读(837) 评论(0) 推荐(0)
摘要: 1、无法识别工具版本“2.0”。可用工具版本“4.0” npm config set msvs_version 2015 --global 2、Error : ENOENT : no such file or directory , ... vender' npm rebuild node-sass 阅读全文
posted @ 2022-11-16 14:16 o小兵o 阅读(70) 评论(0) 推荐(0)
摘要: 1、提前安装一下python-2.7.15.amd64并配置环境变量 2、建议不要安装最新的nodejs版本,鼓捣了两天一直安装卸载nodejs,最后记录一下安装成功的版本 C:\Users\Administrator>node -v v14.0.0 C:\Users\Administrator>n 阅读全文
posted @ 2022-11-16 14:11 o小兵o 阅读(597) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 16 下一页