Unable To Open Pyspark In Mac Os
Solution 1:
You should download a full Spark distribution as described here. PyPi installations of PySpark (i.e through pip
, as you did) are suitable only for connecting with an already existing Spark cluster; from the docs:
The Python packaging for Spark is not intended to replace all of the other use cases. This Python packaged version of Spark is suitable for interacting with an existing cluster (be it Spark standalone, YARN, or Mesos) - but does not contain the tools required to setup your own standalone Spark cluster. You can download the full version of Spark from the Apache Spark downloads page.
NOTE: If you are using this with a Spark standalone cluster you must ensure that the version (including minor version) matches or you may experience odd errors
Post a Comment for "Unable To Open Pyspark In Mac Os"