Skip to content

Commit 1705bfe

Browse files
committed
Restore functions
1 parent 3085b4c commit 1705bfe

1 file changed

Lines changed: 51 additions & 1 deletion

File tree

notebooks/setup_quick_start.ipynb

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,55 @@
1212
"**Run all cells in order.**\n"
1313
]
1414
},
15+
{
16+
"cell_type": "markdown",
17+
"id": "880e3523",
18+
"metadata": {},
19+
"source": [
20+
"# Install uv package manager\n"
21+
]
22+
},
23+
{
24+
"cell_type": "code",
25+
"execution_count": null,
26+
"id": "663e8070",
27+
"metadata": {},
28+
"outputs": [],
29+
"source": [
30+
"%pip install -q uv"
31+
]
32+
},
33+
{
34+
"cell_type": "markdown",
35+
"id": "5790a9f0",
36+
"metadata": {},
37+
"source": [
38+
"# Verify installation\n"
39+
]
40+
},
41+
{
42+
"cell_type": "code",
43+
"execution_count": null,
44+
"id": "95a1222e",
45+
"metadata": {},
46+
"outputs": [],
47+
"source": [
48+
"!uv --version"
49+
]
50+
},
51+
{
52+
"cell_type": "code",
53+
"execution_count": null,
54+
"id": "e6b54fbc",
55+
"metadata": {},
56+
"outputs": [],
57+
"source": [
58+
"import os\n",
59+
"\n",
60+
"os.environ[\"DBX_PATCH_DEBUG\"] = \"1\"\n",
61+
"os.environ[\"DBX_PATCH_LOG_LEVEL\"] = \"DEBUG\""
62+
]
63+
},
1564
{
1665
"cell_type": "markdown",
1766
"id": "1",
@@ -28,7 +77,8 @@
2877
"outputs": [],
2978
"source": [
3079
"# Install dbx-patch from PyPI\n",
31-
"%pip install -q dbx-patch\n",
80+
"# %pip install -q dbx-patch\n",
81+
"!cd .. && uv build && uv pip install ./dist/dbx_patch-1.0.0-py3-none-any.whl\\n\n",
3282
"\n",
3383
"# Verify installation\n",
3484
"import dbx_patch\n",

0 commit comments

Comments
 (0)