上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 问题背景:win10/Linux子系统WSL下运行文本切分对齐工具./mwerSegmenter程序时 出现Exec format error错误,可通过以下步骤解决: 问题原因:主要原因是不支持32位程序,可以用如下方法启用:WSL默认使用 64bit的程序,不支持32位的程序,可以使用QEMU来 阅读全文
posted @ 2022-08-24 14:06 lingwang3 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1.安装appium 2.示例 from appium import webdriver from appium.webdriver.common.touch_action import TouchAction desired_caps = {} desired_caps['platformName 阅读全文
posted @ 2022-08-05 17:25 lingwang3 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1.、环境搭建 安装adb并使手机或模拟器与电脑连接, adb.exe的目录加入到系统的PATH中 adb connect 127.0.0.1:62001 连接设备 adb devices 查看连接设备 adb shell 2、安装python-uiautomator2 pip install -- 阅读全文
posted @ 2022-08-05 17:18 lingwang3 阅读(57) 评论(0) 推荐(0) 编辑
摘要: WINDOWS环境下使用 安装Python开发环境并配置环境变量(2.7版本或者更高版本) 下载对应版本:http://www.python.org/downloads/ 安装好了后添加到环境变量。例如:D:\Python27和D:\Python27\Scripts都要添加到 环境变量path中,否 阅读全文
posted @ 2022-07-20 17:09 lingwang3 阅读(135) 评论(0) 推荐(0) 编辑
摘要: ffmpeg -y -i 1.wav -acodec pcm_s16le -f s16le -ac 1 -ar 16000 1.pcmffmpeg -threads 2 -f pcm -ac 1 -ar 16000 -i %s %s 1.pcm 1.wav ffmpeg -i 1.mp3 -thre 阅读全文
posted @ 2022-06-29 16:33 lingwang3 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 1.文本类网址 https://commoncrawl.org/ 2.中文视频类 易撰 3.英文视频类 互联网档案馆 https://archive.org/ 4.图片类 gettyimages(高像素,水印小)、istockphoto(高像素,水印较多)、unsplash(高像素,无水印) htt 阅读全文
posted @ 2022-03-28 15:56 lingwang3 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1.怎么用DOS命令删除WINDOWS服务器海量小文件 del file /S /Q /S 表示除目录本身外,还将删除指定目录下的所有子目录和文件。/Q 表示安静模式,删除时不需要经过确认。 del换成rmdir也可以,据说批量删除大量文件时比del 更高效快速,但目前我只用过del删除 2.遍历当 阅读全文
posted @ 2022-03-23 17:01 lingwang3 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 1.nextcloud的搭建 安装 yum install snapd 开启snap服务 systemctl restart snapd.service 浏览器输入IP地址,第一次访问 , 会提示你设置下管理员的帐号和密码。确定后,安装完成。 服务默认是80端口,可以通过命令修改 snap set 阅读全文
posted @ 2022-03-18 16:06 lingwang3 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: 1.requests请求遇到如下问题 Access denied | xxx.com used Cloudflare to restrict access 2.解决 pip install cloudscraper import cloudscraper scraper = cloudscraper 阅读全文
posted @ 2021-12-09 16:16 lingwang3 阅读(1159) 评论(0) 推荐(0) 编辑
摘要: tget可以理解为wget的加强版,可以下载 磁力链接和torrent文件。 需要先安装node.js 和 yarn。 删除旧的 nodejs 版本: yum remove nodejs yum clean all && yum makecache fast yum install -y gcc-c 阅读全文
posted @ 2021-11-08 10:59 lingwang3 阅读(515) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页