2026年4月10日

摘要: 小说自动写作-- 测试了 6G显存 --用7B上下文会爆掉 用4B强度不够,理解不了 软件安装:4.5版本 https://github.com/yangqi1309134997-coder/ai-novel-generator python版本 3.11.91.uppip 升级pip为最新3.pi 阅读全文
posted @ 2026-04-10 08:11 三道_python 阅读(1) 评论(0) 推荐(0)

2025年8月28日

该文被密码保护。 阅读全文
posted @ 2025-08-28 20:20 三道_python 阅读(0) 评论(0) 推荐(0)

2024年12月28日

摘要: pip install -i https://mirrors.aliyun.com/pypi/simple/ playwright==1.15.3 playwright note错误 win7最高支持到 pip install -i https://mirrors.aliyun.com/pypi/s 阅读全文
posted @ 2024-12-28 06:50 三道_python 阅读(21) 评论(0) 推荐(0)

2024年3月19日

该文被密码保护。 阅读全文
posted @ 2024-03-19 17:46 三道_python 阅读(3) 评论(0) 推荐(0)

2022年7月13日

摘要: 但是windows 7旗舰版 安装到 playwright install 的时候,运行完命令后,powershell 无任何错误提示,这个时候到cmd下,运行playwright install,提示错误信息“无法找到入口 无法定位程序输入点 GetHostNameW 于动态链接库 WS2_32. 阅读全文
posted @ 2022-07-13 09:48 三道_python 阅读(9040) 评论(0) 推荐(0)

2022年6月24日

摘要: if debug: print(name) try: return NameObject(name.decode('utf-8')) except: try: return NameObject(name.decode('latin-1')) except (UnicodeEncodeError, 阅读全文
posted @ 2022-06-24 11:19 三道_python 阅读(633) 评论(0) 推荐(0)

2022年6月4日

摘要: runfile('C:/Users/oqur2c/.spyder-py3/temp.py', wdir='D:/Personal/Python_Project') Traceback (most recent call last): File "<ipython-input-1-f09f3fbc9d 阅读全文
posted @ 2022-06-04 07:09 三道_python 阅读(243) 评论(0) 推荐(0)

2022年3月25日

摘要: import pywintypesimport win32apiimport win32con完美解决! 搜索 复制 阅读全文
posted @ 2022-03-25 19:53 三道_python 阅读(939) 评论(0) 推荐(0)

2021年10月12日

摘要: //index.php <?php $keys = file("a.txt");//$dir $hangshu = count(file("a.txt")); $zuoce1 = ''; for ($ww=$hangshu - 12;$ww<$hangshu - 0; $ww++){ $jqurl 阅读全文
posted @ 2021-10-12 15:57 三道_python 阅读(59) 评论(0) 推荐(0)

2021年6月3日

摘要: word_count = {} with open("./Beginner Guide to Python.txt") as fin: for line in fin: line = line[:-1] words = line.split() for word in words: if word 阅读全文
posted @ 2021-06-03 11:00 三道_python 阅读(148) 评论(0) 推荐(0)