Skip to content

Commit 8492ebf

Browse files
authored
Disable Epicea in the installation scripts in the README
1 parent df94214 commit 8492ebf

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

README.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,25 @@ DataFrame is a tabular data structure for data analysis in [Pharo](https://pharo
1111
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`):
1212

1313
```st
14-
Metacello new
15-
baseline: 'DataFrame';
16-
repository: 'github://PolyMathOrg/DataFrame:pre-v3/src';
17-
load.
14+
EpMonitor disableDuring: [
15+
Metacello new
16+
baseline: 'DataFrame';
17+
repository: 'github://PolyMathOrg/DataFrame:pre-v3/src';
18+
load ].
1819
```
1920

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

2223
```st
23-
Metacello new
24-
baseline: 'DataFrame';
25-
repository: 'github://PolyMathOrg/DataFrame/src';
26-
load.
24+
EpMonitor disableDuring: [
25+
Metacello new
26+
baseline: 'DataFrame';
27+
repository: 'github://PolyMathOrg/DataFrame/src';
28+
load ].
2729
```
2830

31+
_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.
32+
2933
## How to depend on it?
3034

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

0 commit comments

Comments
 (0)