From 55a7756f407206717a65806ea4ed608b03efea45 Mon Sep 17 00:00:00 2001 From: Fernando Hoces de la Guardia Date: Thu, 16 May 2019 10:28:21 -0700 Subject: [PATCH] added a comment to the to Pkg.add("Mimi") First time running Julia, and `Pkg.add("Mimi") ` was not working until I did `import Pkg` --- docs/src/installation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/installation.md b/docs/src/installation.md index 45e8a3baf..3b6086a07 100644 --- a/docs/src/installation.md +++ b/docs/src/installation.md @@ -16,6 +16,7 @@ You only have to run this command once on your machine. As Mimi gets improved we will release new versions of the package. To make sure you always have the latest version of Mimi installed, you can run the following command at the julia prompt: ```julia + julia> Pkg.update() ``` This will update *all* installed packages to their latest version (not just the Mimi package). @@ -24,6 +25,7 @@ This will update *all* installed packages to their latest version (not just the When you start a new julia command prompt, Mimi is not yet loaded into that julia session. To load Mimi, issue the following command: ```julia +# If you are running Julia for the first time, you might need to run "import Pkg" first. julia> using Mimi ``` You will have to run this command every time you want to use Mimi in julia. You would typically also add `using Mimi` to the top of any julia code file that for example defines Mimi components.