You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by gw...@apache.org on 2017/05/05 00:23:42 UTC

incubator-systemml-website git commit: [MINOR] Update get-started pip install

Repository: incubator-systemml-website
Updated Branches:
  refs/heads/master 3b799fd0b -> 79ffbac91


[MINOR] Update get-started pip install

Added instructions for Spark 1.6 users to include version specifier for
pip install.  Also incorporated site.data.project.release_version token so
download link and artifact name match current release.

Closes #45.


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/commit/79ffbac9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/tree/79ffbac9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/diff/79ffbac9

Branch: refs/heads/master
Commit: 79ffbac91dd259fb09c518b29c01bdba8708eba2
Parents: 3b799fd
Author: Glenn Weidner <gw...@us.ibm.com>
Authored: Thu May 4 17:17:10 2017 -0700
Committer: Glenn Weidner <gw...@us.ibm.com>
Committed: Thu May 4 17:17:10 2017 -0700

----------------------------------------------------------------------
 _src/get-started.html | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml-website/blob/79ffbac9/_src/get-started.html
----------------------------------------------------------------------
diff --git a/_src/get-started.html b/_src/get-started.html
index d3208c5..5a75f66 100644
--- a/_src/get-started.html
+++ b/_src/get-started.html
@@ -95,26 +95,26 @@ pip install jupyter matplotlib numpy{% endhighlight %}
     <!-- Section Header -->
     <div class="col col-12 content-group--medium-bottom-margin">
       <h2>Downloads</h2>
-      <p>Download Spark and SystemML.</p>
+      <p>Download Apache Spark and Apache SystemML.</p>
     </div>
 
     <!-- Step 3 Instructions -->
     <div class="col col-12">
-      <h3><span class="circle">3</span>Download and Install Spark 1.6</h3>
+      <h3><span class="circle">3</span>Download and Install Apache Spark</h3>
     </div>
 
     <!-- Step 3 Code -->
     <div class="col col-12">
       {% highlight bash %}
 brew tap homebrew/versions
-brew install apache-spark16{% endhighlight %}
+brew install apache-spark{% endhighlight %}
 
-    <p> Alternatively, you can <a href="http://spark.apache.org/downloads.html">download Spark</a> directly. </p>
+    <p> Alternatively, you can <a href="http://spark.apache.org/downloads.html">download Apache Spark</a> directly. </p>
     </div>
 
     <!-- Step 4 Instructions -->
     <div class="col col-12">
-      <h3><span class="circle">4</span>Download and Install SystemML</h3>
+      <h3><span class="circle">4</span>Download and Install Apache SystemML</h3>
     </div>
 
     <!-- Step 4 Code -->
@@ -136,12 +136,20 @@ pip3 install systemml
 
 
     	<p>
-    	Alternatively, if you intend to use SystemML via spark-shell (or spark-submit), you only need systemml-0.12.0-incubating.jar, which is packaged into our official binary release (<a href="http://www.apache.org/dyn/closer.lua/incubator/systemml/0.12.0-incubating/systemml-0.12.0-incubating-bin.zip" target="_blank">systemml-0.12.0-incubating.zip</a>).
+    	Alternatively, if you intend to use SystemML via spark-shell (or spark-submit), you only need systemml-{{ site.data.project.release_version }}.jar, which is packaged into our official binary release (<a href="http://www.apache.org/dyn/closer.lua/incubator/systemml/{{ site.data.project.release_version }}/systemml-{{ site.data.project.release_version }}-bin.zip" target="_blank">systemml-{{ site.data.project.release_version }}-bin.zip</a>).
     	Note: If you have installed SystemML via pip, you can get the location of this jar by executing following command:
     	</p>
       {% highlight bash %}
 python -c 'import imp; import os; print os.path.join(imp.find_module("systemml")[1], "systemml-java")'{% endhighlight %}
 
+    	<p>
+    	Note - For Spark 1.6 users only, include a version specifier to download and install compatible Apache SystemML via pip:
+    	</p>
+      {% highlight bash %}
+# For Spark 1.6 users with Python 2:
+pip install "systemml<0.13.0"
+{% endhighlight %}
+
     </div>
 
     <!-- Section 3 -->