We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f71b0d3 commit 448150bCopy full SHA for 448150b
full_install.sh
@@ -13,18 +13,13 @@ except ImportError:
13
print('false')
14
")
15
16
-# Only change directory if not in Colab
17
-if [ "$IN_COLAB" != "true" ]; then
18
- # Change the current directory to the script's directory
19
- cd "$script_dir"
20
-fi
21
-
22
-# Default to editable installs, but force non-editable for Colab
+# Set installation type based on environment
23
if [ "$IN_COLAB" == "true" ]; then
24
EDITABLE="false"
25
echo "Colab detected - forcing non-editable install"
26
else
27
EDITABLE="true"
+ cd "$script_dir"
28
fi
29
30
# Handle user override of editable setting
0 commit comments