From 7030b9642c288f0debaac4775ebe18f756134777 Mon Sep 17 00:00:00 2001 From: Mahmoud Bentriou <mahmoud.bentriou@centralesupelec.fr> Date: Tue, 26 Apr 2022 17:39:06 +0200 Subject: [PATCH] Fix small typo in Readme. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b878da..fd60223 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,10 @@ This package is not yet accessible via the Julia package manager. For the instal * Add the Julia line code ```julia import Distributed: @everywhere - @everywhere push!(LOAD_PATH, /path/to/markovprocesses.jl/core") + @everywhere push!(LOAD_PATH, "/path/to/markovprocesses.jl/core") ``` - on your Julia startup file which is often located in `~/.julia/config/startup.jl` in Unix systems. + 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`. -- GitLab