You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mahout.apache.org by pa...@apache.org on 2015/04/20 15:25:44 UTC

svn commit: r1674842 - /mahout/site/mahout_cms/trunk/content/general/downloads.mdtext

Author: pat
Date: Mon Apr 20 13:25:44 2015
New Revision: 1674842

URL: http://svn.apache.org/r1674842
Log:
CMS commit to mahout by pat

Modified:
    mahout/site/mahout_cms/trunk/content/general/downloads.mdtext

Modified: mahout/site/mahout_cms/trunk/content/general/downloads.mdtext
URL: http://svn.apache.org/viewvc/mahout/site/mahout_cms/trunk/content/general/downloads.mdtext?rev=1674842&r1=1674841&r2=1674842&view=diff
==============================================================================
--- mahout/site/mahout_cms/trunk/content/general/downloads.mdtext (original)
+++ mahout/site/mahout_cms/trunk/content/general/downloads.mdtext Mon Apr 20 13:25:44 2015
@@ -1,22 +1,32 @@
 Title: Downloads
 
 <a name="Downloads-OfficialRelease"></a>
-# Official Release
+# Source code for curren snapshot
+
+Apache Mahout is mirrored to [Github](https://github.com/apache/mahout). To get all source:
 
+    git clone https://github.com/apache/mahout.git mahout
+   
+# Official Release
 Apache Mahout is an official Apache project and thus available from any of
 the Apache mirrors. The latest Mahout release is available for download at: 
 
 * [Download Latest](http://www.apache.org/dyn/closer.cgi/mahout/)
 * [Release Archive](http://archive.apache.org/dist/mahout/)
 
-For <a href="http://maven.apache.org">Maven</a> users please include the following snippet in your pom:
+# Environment
 
-    <dependency>
-        <groupId>org.apache.mahout</groupId>
-        <artifactId>mahout-core</artifactId>
-        <version>${mahout.version}</version>
-    </dependency>
+Edit your environment in ```~/.bash_profile`` `for Mac or ```~/.bashrc``` for many linux distributions. Add the following
+
+    export MAHOUT_HOME=/path/to/mahout
+    export MAHOUT_LOCAL=true # for running standalone on your dev machine, 
+    # unset MAHOUT_LOCAL for running on a cluster 
+
+# Using Mahout as a Library
 
+Running any application that uses Mahout will require installing a binary or source version and setting the environment.  
+Then add the appropriate setting to your pom.xml or build.sbt following the template below.
+ 
 If you only need the math part of Mahout:
 
     <dependency>
@@ -29,7 +39,7 @@ In case you would like to use some of ou
 
     <dependency>
         <groupId>org.apache.mahout</groupId>
-        <artifactId>mahout-integration</artifactId>
+        <artifactId>mahout-hdfs</artifactId>
         <version>${mahout.version}</version>
     </dependency>
 
@@ -42,5 +52,5 @@ In case you are using Ivy, Gradle, Build
 Official releases are usually created when the developers feel there are
 sufficient changes, improvements and bug fixes to warrant a release. Watch
 the <a href="https://mahout.apache.org/general/mailing-lists,-irc-and-archives.html">Mailing lists</a>
- for latest release discussions.
+ for latest release discussions and check the Github repo.