From 42cc624b247fea914697655ca6d169850a233636 Mon Sep 17 00:00:00 2001 From: Andrew McCluskey Date: Thu, 10 Aug 2023 13:35:27 +0200 Subject: [PATCH] Update INSTALLATION.md --- INSTALLATION.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index e0469a28..b059de0f 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -19,13 +19,13 @@ If the relevant EasyReflectometry installation does not work on your system, the git clone https://github.com/easyScience/EasyReflectometryApp ``` 3. Go to **EasyReflectometryApp** directory -4. Create virtual environment for **EasyReflectometryApp** and install its dependences using **poetry** +4. Create virtual environment for **EasyReflectometryApp** and install it and its dependences using **pip** ``` - poetry install + pip install . ``` 5. Launch **EasyReflectometry** application using **poetry** ``` - poetry run EasyReflectometry + python EasyReflectometryApp/main.py ``` -It is also possible to install [poetry within a conda](https://anaconda.org/conda-forge/poetry) environment [if you really need to](https://xkcd.com/1987/), but this is not recommended. \ No newline at end of file +It is also possible to install [poetry within a conda](https://anaconda.org/conda-forge/poetry) environment [if you really need to](https://xkcd.com/1987/), but this is not recommended.