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
Copy file name to clipboardExpand all lines: README.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,22 @@ Install `jupyterlab`. The extension package itself doesn’t depend on `jupyterl
72
72
uv pip install jupyterlab
73
73
```
74
74
75
+
**Configure Access to @deepnote/blocks Package**
76
+
77
+
The `@deepnote/blocks` package is published on GitHub Packages. To install it, you'll need to authenticate with GitHub:
78
+
79
+
1. Create a GitHub Personal Access Token (classic) with `read:packages` scope:
80
+
- Go to https://github.com/settings/tokens
81
+
- Click "Generate new token (classic)"
82
+
- Select the `read:packages` scope
83
+
- Generate and copy the token
84
+
85
+
2. Set the `GITHUB_TOKEN` environment variable to ensure `jlpm` (which is a wrapper around Yarn) can download the `@deepnote/blocks` package from the GitHub package registry. You can set the variable in `.zshrc` or manually like:
86
+
```shell
87
+
export GITHUB_TOKEN=your_token_here
88
+
```
89
+
Replace `YOUR_TOKEN_HERE` with your actual token.
90
+
75
91
Install the extension package in editable mode. It installs the package’s dependencies, too:
0 commit comments