aboutsummaryrefslogtreecommitdiff
path: root/docs/python-programming-guide.md
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2013-08-27 19:39:54 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2013-08-29 21:19:06 -0700
commit2de756ff195e580007d5d96d49fa27634e04c765 (patch)
tree691edcf7e36889f350ad3bb4b6d6ff38a868fa9a /docs/python-programming-guide.md
parent666d93c294458cb056cb590eb11bb6cf979861e5 (diff)
downloadspark-2de756ff195e580007d5d96d49fa27634e04c765.tar.gz
spark-2de756ff195e580007d5d96d49fa27634e04c765.tar.bz2
spark-2de756ff195e580007d5d96d49fa27634e04c765.zip
Update some build instructions because only sbt assembly and mvn package
are now needed
Diffstat (limited to 'docs/python-programming-guide.md')
-rw-r--r--docs/python-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/python-programming-guide.md b/docs/python-programming-guide.md
index 794bff5647..15d3ebfcae 100644
--- a/docs/python-programming-guide.md
+++ b/docs/python-programming-guide.md
@@ -70,7 +70,7 @@ The script automatically adds the `pyspark` package to the `PYTHONPATH`.
The `pyspark` script launches a Python interpreter that is configured to run PySpark jobs. To use `pyspark` interactively, first build Spark, then launch it directly from the command line without any options:
{% highlight bash %}
-$ sbt/sbt package
+$ sbt/sbt assembly
$ ./pyspark
{% endhighlight %}