PySpark 4.0.1: Dependency Hell Resolution
Update 23/07/2026: Same applies to PySpark 4.0.2 - Python 3.11 is the maximum supported version.
If you are having issues running PySpark 4.0.1 with random errors that do not make much sense / relevant to your code, make sure that:
- You are running Python 3.11 (not 3.12 or any other version). I was running 3.12 and getting absolutely irrelevant errors like “executor has crashed” or “Java gateway process exited before sending the driver its port number”. No, error is just that PySpark 4.0.1 does not support Python 3.12 yet.
- You use Java 17 or Java 21. Java 8 is no longer supported by PySpark 4.x. Make sure
JAVA_HOMEenvironment variable points to Java 17 or Java 21 installation (notPATH).
On Windows, you need to make sure WinUtils is installed and:
- Folder containing
binis set asHADOOP_HOMEenvironment variable. winutils.exeis added to PATH.

Have feedback or questions? Feel free to email me.