文章目录默认你下载了zotero下载PDF2zh插件重点如何使用该插件如何一键脚本启动默认你下载了zotero下载PDF2zh插件插件地址https://zotero-chinese.github.io/搜索工具名称下载安装即可重点如何使用该插件地址https://github.com/guaguastandup/zotero-pdf2zh#readme然后照着文档的教程进行就行了我在本地windows安装遇到的一个问题安装了wget包后运行后依旧显示找不到wget然后可以使用curl 来下载curl是windows自带的下载工具curl-L-o server.zip https://raw.githubusercontent.com/guaguastandup/zotero-pdf2zh/refs/heads/main/server.zip后面就照着做就没问题了如何一键脚本启动使用文档的文本内容会出现无法打开的情况提示没有库这是因为没有启动虚拟环境的命令找不到安装的包解决方法加入初始化conda即可echo off REM 进入项目目录把下面替换成你的实际路径 cd/d D:\zotero-pdf2zh\server REM 初始化 conda call conda.bat activate REM 激活虚拟环境 call conda activate zotero-pdf2zh-server REM 启动服务 python server.py--env_toolconda pause