1 2 3 4 5 ··· 25 下一页
摘要: Python 的 concurrent 模块主要用于并发编程,尤其是任务调度和线程/进程池管理。它的核心是 concurrent.futures,提供了高级接口来管理线程和进程。 方法说明submit(fn, *args, **kwargs)异步提交一个任务,返回 Future 对象 map(fn, 阅读全文
posted @ 2025-10-24 13:16 我的腹肌不见了 阅读(3) 评论(0) 推荐(0)
摘要: type不仅可以查看数据类型,还可以创建类 #type(类名,继承类,属性方法) Parent = type("Parent",(object,),{"age":"18","func":lambda self,x:print("hello type",self,x)}) parent = Paren 阅读全文
posted @ 2025-10-24 11:35 我的腹肌不见了 阅读(3) 评论(0) 推荐(0)
摘要: 在自己的分支上git pull后git push提PR时,有时除了自己的commit,会把很多别人的commit也带进去,因为自己的分支落后主分支太多 如何把提的PR里很多别人的commit清除掉? git checkout mybranch git fetch origin main git re 阅读全文
posted @ 2025-10-21 13:40 我的腹肌不见了 阅读(4) 评论(0) 推荐(0)
摘要: #打包目的:完全脱离环境,只copy hello.exe去其他机器就可以完美运行#打包命令: pyinstaller --onefile .\xxx\hello.py --hidden-import "tkinter" --hidden-import=glob --hidden-import=lxm 阅读全文
posted @ 2025-09-15 09:42 我的腹肌不见了 阅读(42) 评论(0) 推荐(0)
摘要: 下载 Releases · coreybutler/nvm-windows nvm-setup.exe nvm list available #查看可安装版本 如果报错Could not retrieve https://nodejs.org/dist/index.json: Get "https: 阅读全文
posted @ 2025-09-15 09:03 我的腹肌不见了 阅读(18) 评论(0) 推荐(0)
摘要: 下载安装ollama https://ollama.com/download,windows版本国内网络下载慢可以用迅雷下载比较快 查看有哪些model可供下载 https://ollama.com/library 安装什么model 模型名称参数大小推荐内存速度能力特点适用场景 qwen2.5:0 阅读全文
posted @ 2025-08-30 20:24 我的腹肌不见了 阅读(17) 评论(0) 推荐(0)
摘要: 安装lib: pip install openai 去deepseek官网申请API key: DeepSeek 开放平台 API key生成后记得保存,关闭后就找不到了,只能再次生成 充值: 我冲了10块,不充值直接调用API会报错: openai.APIStatusError: Error co 阅读全文
posted @ 2025-08-24 00:25 我的腹肌不见了 阅读(39) 评论(0) 推荐(0)
摘要: F 对象:用于引用模型字段自身的值 F 对象允许你在数据库层面进行字段之间的比较或运算,而不是将值取出到 Python 中再处理。 from django.db.models import FMyModel.objects.update(counter=F('counter') + 1) #将某个字 阅读全文
posted @ 2025-08-21 09:43 我的腹肌不见了 阅读(10) 评论(0) 推荐(0)
摘要: 安装(推荐python3.10安装) pip install pyqt5-tools 启动qt designer C:\Python310\Scripts>pyqt5-tools.exe designer 或 C:\Python310\Lib\site-packages\qt5_applicatio 阅读全文
posted @ 2025-08-19 15:35 我的腹肌不见了 阅读(10) 评论(0) 推荐(0)
摘要: npm start报错 node:internal/modules/cjs/loader:1244 throw err; ^ Error: Cannot find module 'which' 解决方法: npm install which 阅读全文
posted @ 2025-08-15 09:57 我的腹肌不见了 阅读(11) 评论(0) 推荐(0)
1 2 3 4 5 ··· 25 下一页