Skip to content

Instantly share code, notes, and snippets.

@wuriyanto48
Created October 8, 2024 14:56
Show Gist options
  • Save wuriyanto48/4357d7f810e8e54898597421d726cf6d to your computer and use it in GitHub Desktop.
Save wuriyanto48/4357d7f810e8e54898597421d726cf6d to your computer and use it in GitHub Desktop.
Install Pentaho Mac M1

Install Pentaho Mac M1

Install Homebrew

Check Xcode Command Line tools

xcode-select -v

If you see a response with ‘xcode-select version’, it’s already installed. If Not, install it

xcode-select --install

Once you’ve installed Command Line Tools, use this command to install Homebrew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Install Java OpenJDK

brew install openjdk@17

Setup PATH for Java

Open .profile

sudo nano ~/.profile

Add the following line

export PATH="/opt/homebrew/opt/openjdk@17/bin:$PATH"

Reload the change

source ~/.profile

Check Java and Javac

java --version
openjdk 17.0.7 2023-04-18
OpenJDK Runtime Environment Homebrew (build 17.0.7+0)
OpenJDK 64-Bit Server VM Homebrew (build 17.0.7+0, mixed mode, sharing)
javac --version
javac 17.0.7

Download Pentahoo

https://pentaho.com/pentaho-developer-edition/#communityProducts

Fill your data.

And choose pdi-ce-10.2.0.0-222.zip Pentaho Data Integration (Base Install)

Extract the .zip file

Move Pentahoo to /usr/local folder

sudo mv pentaho/ /usr/local/pentaho

Run Pentahoo Data Integration

/usr/local/pentaho/spoon.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment