Infosdsh --version
0.1.0-rc.6OS 名称: Microsoft Windows 10 专业版 What I have done1、I have try to install globally. ## npm install -g @deepseek-ai/dsh
## 为了修复无法打开的问题,我尝试如下
npm i -g @deepseek-ai/dsh --ignore-scripts --registry=https://registry.npmjs.org2、I have fixed the problem that I can't open folder in web mode with the help of: directory picker failed: directory picker failed: win32 folder dialog worker exited before reporting a result
3、But When I config my APIKEY, I get this:
4、I have try to download the log,I get Http 500
Question:1、how to debug ? such as opencode, I can get info like opencode run "hello" --print-logs |
Replies: 1 comment
|
好的解决了。我没有做这一步骤 @deepseek-ai/dsh-session-persistence-jsonl/lib/index.js —— publishNewFileWin32 改为 fs.rename(并在 fs/promises import 中补上 rename): 最终的解决: // 原来
import { link, mkdir, mkdtemp, open, readFile, readdir, realpath, rm, stat, truncate } from "node:fs/promises";
// 修改
import { link, mkdir, mkdtemp, open, readFile, readdir, realpath, rename, rm, stat, truncate } from "node:fs/promises"; |



好的解决了。我没有做这一步骤
@deepseek-ai/dsh-session-persistence-jsonl/lib/index.js —— publishNewFileWin32 改为 fs.rename(并在 fs/promises import 中补上 rename):
最终的解决: