rawkintrevo commented on code in PR #636: URL: https://github.com/apache/mahout/pull/636#discussion_r2553228735
########## website/download/quickstart.md: ########## @@ -14,62 +14,65 @@ See the License for the specific language governing permissions and limitations under the License. --> + --- layout: page title: Quickstart - - --- - -# Mahout MapReduce Overview +# Mahout Quickstart Guide ## Getting Mahout -#### Download the latest release +### Download the Latest Release -Download the latest release [here](http://www.apache.org/dyn/closer.cgi/mahout/). +You can download the latest official Mahout release from the Apache downloads page: -Or checkout the latest code from [here](http://mahout.apache.org/documentation/developers/version-control.html) +👉 **https://downloads.apache.org/mahout/** -#### Alternatively: Add Mahout 0.10.0 to a maven project +Or access the latest source code on GitHub: -Mahout is also available via a [maven repository](http://mvnrepository.com/artifact/org.apache.mahout) under the group id *org.apache.mahout*. -If you would like to import the latest release of mahout into a java project, add the following dependency in your *pom.xml*: +👉 **https://github.com/apache/mahout.git** - <dependency> - <groupId>org.apache.mahout</groupId> - <artifactId>mahout-mr</artifactId> - <version>0.14.0</version> - </dependency> +### Add Mahout to a Maven Project +### Using Mahout with Python +Mahout can be used from Python via **PySpark**. Install PySpark first: Review Comment: not accurate ########## website/download/quickstart.md: ########## @@ -14,62 +14,65 @@ See the License for the specific language governing permissions and limitations under the License. --> + --- layout: page title: Quickstart - - --- - -# Mahout MapReduce Overview +# Mahout Quickstart Guide ## Getting Mahout -#### Download the latest release +### Download the Latest Release -Download the latest release [here](http://www.apache.org/dyn/closer.cgi/mahout/). +You can download the latest official Mahout release from the Apache downloads page: -Or checkout the latest code from [here](http://mahout.apache.org/documentation/developers/version-control.html) +👉 **https://downloads.apache.org/mahout/** -#### Alternatively: Add Mahout 0.10.0 to a maven project +Or access the latest source code on GitHub: -Mahout is also available via a [maven repository](http://mvnrepository.com/artifact/org.apache.mahout) under the group id *org.apache.mahout*. -If you would like to import the latest release of mahout into a java project, add the following dependency in your *pom.xml*: +👉 **https://github.com/apache/mahout.git** - <dependency> - <groupId>org.apache.mahout</groupId> - <artifactId>mahout-mr</artifactId> - <version>0.14.0</version> - </dependency> +### Add Mahout to a Maven Project +### Using Mahout with Python +Mahout can be used from Python via **PySpark**. Install PySpark first: -## Features +```bash +pip install pyspark +pip install git+https://github.com/apache/mahout.git +``` Review Comment: no -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
