yiseungmi87 commented on code in PR #2388: URL: https://github.com/apache/systemds/pull/2388#discussion_r2704103634
########## docs/site/release_install.md: ########## @@ -0,0 +1,210 @@ + +# Install SystemDS from a Release + +This guide explains how to install and set up SystemDS using the pre-built release archives. + +--- + +- [1. Download a Release](#1-download-a-release) +- [2. Install on Windows](#2-install-on-windows) +- [3. Install on Ubuntu 22.04](#3-install-on-ubuntu-2204) +- [4. Install on macOS](#4-install-on-macos) + +--- + +# 1. Download a Release + +Download the official release archive from the Apache SystemDS website: + +https://systemds.apache.org/download + +After downloading the file `systemds-<VERSION>.tar.gz`, place the file in any directory you choose for installation. + +### Java Requirement ### +For compatability with Spark execution and parser components, **Java 17** is strongly recommended for SystemDS. + +Verify Java 17: + +```bash +java -version +``` + +If missing, install a JDK 17 distribution. + +--- + +# 2. Install on Windows + +### 2.1 Extract the Release Archive + +Use Windows built-in extractor. + +### 2.2 Set Evironment Variables + +To run SystemDS from the command line, configure: +- `SYSTEMDS_ROOT`-> the extracted folder +- Add `%SYSTEMDS_ROOT%\bin` to your `PATH` + +Example (PowerShell): +```bash +setx SYSTEMDS_ROOT "C:\path\to\systemds-<VERSION>" +setx PATH "$env:SYSTEMDS_ROOT\bin;$env:PATH" +``` + +Restart the terminal afterward. Review Comment: Removed the step -- 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]
