npx dsh web一直卡着没法进行下一步? #3710
Replies: 13 comments 3 replies
|
实际上是在下载,但是很慢,你可以更换另外一种给你全部显示下载进程的方式 |
|
same with me, what's wrong? |
|
这不是卡住没响应,是 先别反复重试 set NODE_OPTIONS=--max-old-space-size=8192
npm install -g @deepseek-ai/dsh@0.1.0-rc.7
dsh web装进全局之后用 |
|
npx --verbose @deepseek-ai/dsh web |
|
process stop after: npm http fetch GET 200 https://registry.npmjs.org/@deepseek-ai%2fdsh-client-ui-tool 37ms (cache revalidated) |
|
@lotosbin 的 别再死等 npx --legacy-peer-deps @deepseek-ai/dsh@latest web或 |
|
same here. after closing it failed to reinstall it. second time in 3 days that this happens. already filed issue previously. this time deepseek chat advised me to install it globally. that of course worked but destroyed my prior installation with all plugins and skills. |
|
do not use the npx, Direct use npm install, it works on my node 25 MacOS |
|
pnpm dlx @deepseek-ai/dsh@0.1.1-rc.2 web --port 3080 推荐 1分钟装好 |
|
@flopsi 要新旧并存、不覆盖原来的全局包: npm i -g @deepseek-ai/dsh@0.1.1-rc.2 --prefix %USERPROFILE%\.dsh-next --legacy-peer-deps然后用 @mozhuanzuojing 的 |
|
一摸一样的问题,win11。2台电脑都这样,但是用pnpm dlx不指定版本拉不到最新的。用@latest也不行。 |
|
@Joseph-87 pnpm dlx @deepseek-ai/dsh@0.1.1-rc.2 web --port 3080长期同样不要用 npx: |
|
不要使用npx,用pnpm吧 |

这不是卡住没响应,是
npx正在把@deepseek-ai/dsh@0.1.0-rc.7(当前latest)整棵依赖树解进临时目录。Windows 上经常看起来像死机,拖久了还会像 #3683 那样 OOM。先别反复重试
npx。可以:装进全局之后用
dsh web。现在 dist-tag:latest=0.1.0-rc.7,next=0.1.0-rc.8。要 rc.8 就把包名改成@deepseek-ai/dsh@0.1.0-rc.8或@next,安装时同样把堆加大。Node 24 上npx特别容易爆堆,能换 22 会稳一些。