From dc7c8dd694a41224dd1ccdcd1f6f606e5b8988f8 Mon Sep 17 00:00:00 2001
From: Mahmoud Bentriou <mahmoud.bentriou@centralesupelec.fr>
Date: Thu, 12 May 2022 00:14:07 +0200
Subject: [PATCH] Updating installation's instructions

---
 README.md | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 0888528..3bcade3 100644
--- a/README.md
+++ b/README.md
@@ -18,15 +18,12 @@ This package is not yet accessible via the Julia package manager. For the instal
 
 1. Clone this git repository on your computer.
 2. Add the "src" directory of this repository to your `LOAD_PATH`. This can be done by two different ways:
-    * Add the Julia line code 
+    * Launch Julia's REPL (for example by entering `julia` in your terminal)
+    * Enter Pkg's REPL by typing `]`
+    * Type
     ```julia
-    import Distributed: @everywhere
-    @everywhere push!(LOAD_PATH, /path/to/markovprocesses.jl/src")
+    add https://gitlab-research.centralesupelec.fr/2017bentrioum/markovprocesses.jl/
     ```
-    on your Julia startup file which is often located in `~/.julia/config/startup.jl` in Unix systems. 
-    "/path/to/markovprocesses.jl/core" is the path to the core directory of this git repository.
-    
-    * If you don't want to add this in your startup file, you can add these lines in your Julia script before `using MarkovProcesses`.
 
 ## Getting started 
 
-- 
GitLab