#!/usr/bin/env bash #
This script downloads the latest Pharo 120 Image.
This script downloads the stable Pharo VM for 120.
curl https://get.pharo.org | bash
curl
is not available:
wget -O- https://get.pharo.org | bash
Pharo.changes | A changes file for the Pharo Image |
Pharo.image | A Pharo image, to be opened with the Pharo VM |
pharo | Script to run the downloaded VM in headless mode |
pharo-ui | Script to run the downloaded VM in UI mode |
pharo-vm/ | Directory containing the VM |
Show the command line help: | ./pharo Pharo.image --help |
List all command line handlers: | ./pharo Pharo.image --list |
Evaluate an expression on the command line: | ./pharo Pharo.image eval "Class allInstances" |
Other versions are available in the form, where version=90,80,70... | curl https://get.pharo.org/[version]+vm | bash |
Getting explicitly a 64bit or 32 bit version requires the 32 or 64 prefix | curl https://get.pharo.org/[32/64]/[version]+vm | bash |
Older versions can be found at | https://get.pharo.org/archive/80 |