aboutsummaryrefslogtreecommitdiff
path: root/docs/python-programming-guide.md
diff options
context:
space:
mode:
authorMatei Zaharia <matei@databricks.com>2014-01-15 14:20:39 -0800
committerMatei Zaharia <matei@databricks.com>2014-01-15 14:20:39 -0800
commit2ffdaefbcb7a3471c548c0584003c9cbffa1d625 (patch)
treed06da1f5d1107ffaee696735face77671c809311 /docs/python-programming-guide.md
parent59f475c79fc8fd6d3485e4d0adf6768b6a9225a4 (diff)
downloadspark-2ffdaefbcb7a3471c548c0584003c9cbffa1d625.tar.gz
spark-2ffdaefbcb7a3471c548c0584003c9cbffa1d625.tar.bz2
spark-2ffdaefbcb7a3471c548c0584003c9cbffa1d625.zip
Clarify that Python 2.7 is only needed for MLlib
Diffstat (limited to 'docs/python-programming-guide.md')
-rw-r--r--docs/python-programming-guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/python-programming-guide.md b/docs/python-programming-guide.md
index b07899c2e1..7c5283fb0b 100644
--- a/docs/python-programming-guide.md
+++ b/docs/python-programming-guide.md
@@ -52,7 +52,7 @@ In addition, PySpark fully supports interactive use---simply run `./bin/pyspark`
# Installing and Configuring PySpark
-PySpark requires Python 2.7 or higher.
+PySpark requires Python 2.6 or higher.
PySpark applications are executed using a standard CPython interpreter in order to support Python modules that use C extensions.
We have not tested PySpark with Python 3 or with alternative Python interpreters, such as [PyPy](http://pypy.org/) or [Jython](http://www.jython.org/).
@@ -152,7 +152,7 @@ Many of the methods also contain [doctests](http://docs.python.org/2/library/doc
# Libraries
[MLlib](mllib-guide.html) is also available in PySpark. To use it, you'll need
-[NumPy](http://www.numpy.org) version 1.7 or newer. The [MLlib guide](mllib-guide.html) contains
+[NumPy](http://www.numpy.org) version 1.7 or newer, and Python 2.7. The [MLlib guide](mllib-guide.html) contains
some example applications.
# Where to Go from Here