From 3ab282fd402cf6af03660c4d8d89a7d4ba9da1ff Mon Sep 17 00:00:00 2001 From: LeoBorcherding Date: Thu, 12 Mar 2026 22:55:06 -0500 Subject: [PATCH] fix: install data-designer plugin non-editable for Colab compatibility Editable installs (-e) work via a .pth file that is only processed at Python startup. In Colab the kernel is already running when setup.sh installs the plugin, so the .pth file never gets picked up and data_designer_unstructured_seed is not importable. Remove -e so pip copies the package files directly into site-packages, which the live kernel can find immediately. Local venv installs are unaffected since the venv is always created fresh before install. --- studio/install_python_stack.py | 1 - 1 file changed, 1 deletion(-) diff --git a/studio/install_python_stack.py b/studio/install_python_stack.py index 9ce16cd7bb..f7c62ade9b 100644 --- a/studio/install_python_stack.py +++ b/studio/install_python_stack.py @@ -270,7 +270,6 @@ def install_python_stack() -> int: "Installing local data-designer unstructured plugin", "--no-cache-dir", "--no-deps", - "-e", str(LOCAL_DD_UNSTRUCTURED_PLUGIN), constrain = False, )