We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32672a6 commit 070e28aCopy full SHA for 070e28a
.github/actions/run-notebook/convert-notebook.py
@@ -41,6 +41,7 @@
41
# Activate the virtual environment
42
source "${SCRIPT_DIR}/venv/bin/activate"
43
pip install --upgrade pip
44
+pip install ipython
45
"""
46
run_commands = [activate_venv]
47
for cell in nb.cells:
@@ -68,7 +69,7 @@
68
69
print(f"Setup script saved to {run_script_path}")
70
71
# Collect cells that are not pip install commands
-executable_cells = []
72
+executable_cells = ["from IPython.display import display"]
73
74
if cell.cell_type == "code":
75
if "pip" not in cell.source:
0 commit comments