From 72fe8113ff5c377f45c953c189daafc4ea9a3d7e Mon Sep 17 00:00:00 2001 From: Nam Nguyen Date: Sun, 24 May 2026 10:37:13 +0200 Subject: [PATCH 1/2] [SPARK-51377][DOCS] Fix PYTHONPATH shell command in PySpark installation docs Quote the IFS delimiter in the PYTHONPATH export command to ensure proper shell behavior across different environments. Co-authored-by: Isaac --- python/docs/source/getting_started/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/docs/source/getting_started/install.rst b/python/docs/source/getting_started/install.rst index ba0da2d614289..4f7a6d9382516 100644 --- a/python/docs/source/getting_started/install.rst +++ b/python/docs/source/getting_started/install.rst @@ -188,7 +188,7 @@ One example of doing this is shown below: cd spark-\ |release|\-bin-hadoop3 export SPARK_HOME=`pwd` - export PYTHONPATH=$(ZIPS=("$SPARK_HOME"/python/lib/*.zip); IFS=:; echo "${ZIPS[*]}"):$PYTHONPATH + export PYTHONPATH=$(ZIPS=("$SPARK_HOME"/python/lib/*.zip); IFS=":"; echo "${ZIPS[*]}"):$PYTHONPATH Installing from Source From 5c0ccaa41db3fd7f86b03450f6874bfe0181a46b Mon Sep 17 00:00:00 2001 From: Nam Nguyen Date: Sun, 24 May 2026 12:56:44 +0200 Subject: [PATCH 2/2] Trigger CI