From 8492ebf0c3c9ce4b669153efc1c44d056ce033c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Jordan=20Monta=C3=B1o?= Date: Fri, 18 Aug 2023 10:12:24 +0200 Subject: [PATCH] Disable Epicea in the installation scripts in the README --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index d3d8ce18..8c3ca625 100644 --- a/README.md +++ b/README.md @@ -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: