Skip to content
Domenico Cipriani edited this page Oct 22, 2024 · 3 revisions

Welcome to the Phausto wiki!

Installation

To have Phusto working in your Pharo image, follow the next steps:

  1. Download a new Pharo image. (At the moment of this writing, Phausto was tested in Pharo 11 and 12.)

  2. Download the Phausto library for your OS:

    And copy the folder next to your .image file.

image

Warning for Mac 🍎!

If you are using an Intel Mac, you need to open the three .dylib files and allow the execution in Security & Privacy settings.

image A terminal should be opened if the file could be executed, you can close it and continue with the installation.
  1. Load the project in your image using Metacello, copy and execute in a Playground.

    • If you want to use just Phausto:
    Metacello new
     baseline: 'Phausto';
     repository: 'github://lucretiomsp/phausto:main';
     load
    • If you want to use the User Interface, you need to install the CoypuIDE (it has Phausto as dependency):
    Metacello new
     baseline: 'CoypuIDE';
     repository: 'github://pharo-graphics/CoypuIDE/';
     onConflict: [ :ex | ex useIncoming ];
     onUpgrade: [ :ex | ex useIncoming ];
     load
  2. Ready! You should be able to try the examples in the README.

Clone this wiki locally