This is an automated email from the ASF dual-hosted git repository.
akm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new 2aa03780d Qumat 0.4 changes
2aa03780d is described below
commit 2aa03780d21e42a8d70a541be357ea95aaa585a1
Author: Andrew Musselman <[email protected]>
AuthorDate: Thu Apr 17 08:10:14 2025 -0700
Qumat 0.4 changes
---
website/_includes/navbar.html | 2 --
website/_layouts/home.html | 2 +-
website/download/downloads.md | 46 ++++++++-----------------------------------
3 files changed, 9 insertions(+), 41 deletions(-)
diff --git a/website/_includes/navbar.html b/website/_includes/navbar.html
index 6f78ec927..aebe719b3 100644
--- a/website/_includes/navbar.html
+++ b/website/_includes/navbar.html
@@ -76,8 +76,6 @@
href="/download/downloads.html">Latest Release</a>
<a class="dropdown-item"
href="https://github.com/apache/mahout/">Github
Repository</a>
- <a class="dropdown-item"
- href="/download/quickstart">Quickstart</a>
</div>
</li>
diff --git a/website/_layouts/home.html b/website/_layouts/home.html
index 5b954635c..f4622e4b2 100644
--- a/website/_layouts/home.html
+++ b/website/_layouts/home.html
@@ -16,7 +16,7 @@ layout: default
<div class="mahout-header-lower">
<div class="container position-relative mb-auto">
<h2 class="mb-4">For Creating Scalable Performant Machine Learning
Applications</h2>
- <a class="btn btn-lg btn-light btn-download mb-3"
href="https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=mahout/{{
site.mahout-version }}/mahout-{{ site.mahout-version }}-source-release.zip"><i
class="fa fa-download"></i> Download Mahout</a>
+ <a class="btn btn-lg btn-light btn-download mb-3"
href="https://www.apache.org/dyn/mirrors/mirrors.cgi?action=download&filename=mahout/{{
site.mahout-version }}/mahout-qumat-{{ site.mahout-version }}.zip"><i
class="fa fa-download"></i> Download Mahout</a>
<div class="small text-white mx-auto">Currently v{{
site.mahout-version }}</div>
</div>
</div>
diff --git a/website/download/downloads.md b/website/download/downloads.md
index 960c9447c..dc9a1e186 100644
--- a/website/download/downloads.md
+++ b/website/download/downloads.md
@@ -15,8 +15,8 @@ the Apache mirrors. The latest Mahout release is available
for download at:
* To validate artifacts:
* (From KEYS file): `gpg --import KEYS`
```
-$ gpg mahout-14.1-source-release.zip.asc
-gpg: assuming signed data in `mahout-14.1-source-release.zip'
+$ gpg mahout-qumat-0.4.zip.gpg
+gpg: assuming signed data in `mahout-qumat-0.4.zip.gpg'
gpg: Signature made Fri 01 Mar 2019 09:59:00 AM PST using RSA key ID 140A5BE9
gpg: Good signature from "Apache B. Committer (ASF Signing Key)
<[email protected]>"
```
@@ -27,43 +27,13 @@ Apache Mahout is mirrored to
[Github](https://github.com/apache/mahout). To get
git clone https://github.com/apache/mahout.git mahout
-# Environment
-
-Whether you are using Mahout's Shell, running command line jobs or using it as
a library to build your own apps
-you'll need to setup several environment variables.
-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
-
-If you are running on Spark you will also need $SPARK_HOME
-
-Make sure to have $JAVA_HOME set also
-
-# 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>
- <groupId>org.apache.mahout</groupId>
- <artifactId>mahout-math</artifactId>
- <version>${mahout.version}</version>
- </dependency>
-
-In case you would like to use some of our integration tooling (e.g. for
generating vectors from Lucene):
-
- <dependency>
- <groupId>org.apache.mahout</groupId>
- <artifactId>mahout-hdfs</artifactId>
- <version>${mahout.version}</version>
- </dependency>
-
-In case you are using Ivy, Gradle, Buildr, Grape or SBT you might want to
directly head over to the official [Maven Repository
search](http://mvnrepository.com/artifact/org.apache.mahout/mahout-core).
+## Getting started
+To install dependencies, run the following:
+```
+pip install -U poetry
+poetry install
+```
<a name="Downloads-FutureReleases"></a>
# Future Releases