HyukjinKwon commented on a change in pull request #23736: bin/pyspark: 
eliminate use of hardcoded 'python' command and fix IPython version check
URL: https://github.com/apache/spark/pull/23736#discussion_r253952144
 
 

 ##########
 File path: bin/pyspark
 ##########
 @@ -42,11 +42,10 @@ if [[ -z "$PYSPARK_DRIVER_PYTHON" ]]; then
   PYSPARK_DRIVER_PYTHON="${PYSPARK_PYTHON:-"python"}"
 fi
 
-WORKS_WITH_IPYTHON=$(python -c 'import sys; print(sys.version_info >= (2, 7, 
0))')
-
 # Determine the Python executable to use for the executors:
 if [[ -z "$PYSPARK_PYTHON" ]]; then
-  if [[ $PYSPARK_DRIVER_PYTHON == *ipython* && ! $WORKS_WITH_IPYTHON ]]; then
+  WORKS_WITH_IPYTHON=$($PYSPARK_DRIVER_PYTHON -c 'import sys; 
print(sys.version_info >= (2, 7, 0))')
 
 Review comment:
   This decides the executor's Python to use. `PYSPARK_DRIVER_PYTHON` shouldn't 
matter. Also, Spark itself already requires Python 2.7 since we dropped 2.6. So 
we can just remove this check.
   
   We can also check if both `PYSPARK_DRIVER_PYTHON` and `PYSPARK_PYTHON` are 
higher than Python 2.7.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to