From 5b788c259927315f007a7f5e923d33fc1138bcb7 Mon Sep 17 00:00:00 2001 From: Will Usher Date: Wed, 19 Feb 2020 12:40:17 +0100 Subject: [PATCH] Updated readme --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1b25f5b..12312e0 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,14 @@ This is an example OSeMOSYS model published as a Frictionless Data [Tabular Data The Data Package was constructed with the help of the Python **otoole** package available on [PyPI](https://pypi.org/project/otoole/) and [Github](https://github.com/OSeMOSYS/otoole). -You can use `v0.2` onwards of **otoole** to generate a GNU MathProg data file from the dataset with the following commands and then run OSeMOSYS +Simplicity `v0.2` requires `v0.5.4` or later of **otoole**. +You can use **otoole** to generate a GNU MathProg data file from the dataset with the following commands and then run OSeMOSYS. ```bash # Install the OSeMOSYS toolkit -pip install otoole +pip install otoole>=0.5.4 # Download the dataset and build a GNU MathProg datafile -otoole convert datapackage datafile https://zenodo.org/record/3479823/files/OSeMOSYS/simplicity-v0.1a0.zip ./simplicity.txt +otoole convert datapackage datafile https://zenodo.org/record/3479823/files/OSeMOSYS/simplicity-v0.2.zip ./simplicity.txt # Solve the model glpsol -m OSeMOSYS.txt -d simplicity.txt -``` \ No newline at end of file +```