摘要: 参考:https://blog.csdn.net/wangqingchuan92/article/details/108974662 1、mingW64 压缩包下载免安装:https://sourceforge.net/projects/mingw-w64/files/ 2、环境变量配置: ming 阅读全文
posted @ 2024-02-19 16:36 小毛编 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 问题:paddlespeech 安装失败,其中webrtcvad音频处理包无法正常安装 解决方案: 原因:windows sdk版本不匹配,使用了10的版本; 解决步骤: 1、安装 Windows SDK version 8.1 下载地址:https://go.microsoft.com/fwlin 阅读全文
posted @ 2024-01-22 17:42 小毛编 阅读(64) 评论(0) 推荐(0) 编辑
摘要: # 等待下载#--de-zh https://huggingface.co/Helsinki-NLP/opus-mt-de-ZH/tree/mainhttps://huggingface.co/Helsinki-NLP/opus-tatoeba-es-zh https://huggingface.c 阅读全文
posted @ 2023-12-22 18:50 小毛编 阅读(140) 评论(0) 推荐(0) 编辑
摘要: # coding: utf-8 from concurrent.futures import ThreadPoolExecutor, as_completed import time def spider(page): time.sleep(page) print(f"crawl task{page 阅读全文
posted @ 2023-11-30 08:21 小毛编 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 服务异常: 找到单元 xlwings._xlwindows self._xl = COMRetryObjectWrapper(DispatchEx("ket.Application")) # 内核不支持,只有was无excel 参考:https://blog.csdn.net/oldman_g/ar 阅读全文
posted @ 2023-11-24 16:31 小毛编 阅读(32) 评论(0) 推荐(0) 编辑
摘要: python setup.py install # 或 python -m pip install . 阅读全文
posted @ 2023-11-01 18:45 小毛编 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1、安装visual studio, 并找到各类.h文件夹,复制到python对应的include文件夹下即可 2、参考:https://blog.csdn.net/zbzcDZF/article/details/90215639 1)安装win sdk 2)将对应的.H库文件添加到path中 3、 阅读全文
posted @ 2023-10-23 11:21 小毛编 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 1、安装pipinstaller ==>pip install pyinstaller or ==> python -m pip install pyinstaller 2、新建 .spec文件 1)进入入口文件所在目录 2)pyi-makespec xx.py 3、修改文件: 1)递归遍历所有的项 阅读全文
posted @ 2023-05-26 18:02 小毛编 阅读(147) 评论(0) 推荐(0) 编辑
摘要: D:\android-sdk-windows\platforms\android-29\android.jar\android\hardware\ 打包到Android的基本包里面 阅读全文
posted @ 2023-05-25 16:39 小毛编 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 1、控制台启动任务 1)进入任务环境目录,cd xxxenv 2)activate ,激活,进入该环境 3)cd xxxPro:进入项目目录 4)执行python manage.py runserver 127.0.0.1:5002 --启动后,后台代码修改,服务会自动更新 2、sqlite3 配置 阅读全文
posted @ 2023-05-18 16:53 小毛编 阅读(14) 评论(0) 推荐(0) 编辑