You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install dependencies and the package in development mode
26
+
jlpm install
27
+
jlpm dev ## if you haven't Docker installed replace this line by `jlpm dev --no-occ-build`
26
28
# Rebuild extension Typescript source after making changes
27
29
jlpm run build
28
30
31
+
**Note:** There are 2 possibilities for the installation.
32
+
33
+
1) either you are using [Docker](https://www.docker.com/) to build `@jupytercad/opencascade` package and you need to run `jlpm dev` in the commands above.
34
+
35
+
2) or you are using a prebuilt version by calling `jlpm dev --no-occ-build` to install the package.
36
+
37
+
38
+
**Note:** The `jlpm` command is JupyterLab's pinned version of
39
+
[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
40
+
`yarn` or `npm` in lieu of `jlpm` above.
41
+
42
+
29
43
You can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.
0 commit comments