Skip to content

Commit

Permalink
Disable Epicea in the installation scripts in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanmontt authored Aug 18, 2023
1 parent df94214 commit 8492ebf
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,25 @@ DataFrame is a tabular data structure for data analysis in [Pharo](https://pharo
To install the latest stable version of DataFrame (`pre-v3`), go to the Playground (`Ctrl+OW`) in your Pharo image and execute the following Metacello script (select it and press Do-it button or `Ctrl+D`):

```st
Metacello new
baseline: 'DataFrame';
repository: 'github://PolyMathOrg/DataFrame:pre-v3/src';
load.
EpMonitor disableDuring: [
Metacello new
baseline: 'DataFrame';
repository: 'github://PolyMathOrg/DataFrame:pre-v3/src';
load ].
```

Use this script if you want the latest version of DataFrame:

```st
Metacello new
baseline: 'DataFrame';
repository: 'github://PolyMathOrg/DataFrame/src';
load.
EpMonitor disableDuring: [
Metacello new
baseline: 'DataFrame';
repository: 'github://PolyMathOrg/DataFrame/src';
load ].
```

_Note:_ `EpMonitor` serves to deactive [Epicea](https://github.com/pharo-open-documentation/pharo-wiki/blob/3cfb4ebc19821d607bec35c34ee928b4e06822ee/General/TweakingBigImages.md#disable-epicea), a Pharo code recovering mechanism, during the installation of DataFrame.

## How to depend on it?

If you want to add a dependency on `DataFrame` to your project, include the following lines into your baseline method:
Expand Down

0 comments on commit 8492ebf

Please sign in to comment.