From 0bf9675631e6964f9b4676a903bf6a59cd1f2cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E8=89=AF?= <841369634@qq.com> Date: Thu, 19 Sep 2024 23:58:21 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=B4=A1=E7=8C=AE=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=9A=84=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e636c83596..8478ff7fad 100644 --- a/README.md +++ b/README.md @@ -359,15 +359,19 @@ cnpm install lerna@6 -g 运行如下命令即可开发模式启动 ```shell +# 拉取代码 git clone https://github.com/docmirror/dev-sidecar cd dev-sidecar # 注意不要使用 `npm install` 来安装依赖,因为 `lerna bootstrap` 会自动安装依赖 lerna bootstrap +# 如果 `lerna bootstrap` 有报错,可以尝试执行如下两行命令,用yarn替换掉npm: +#cnpm install yarn +#lerna bootstrap --npm-client=yarn +# 运行DevSidecar cd packages/gui - npm run electron ```