From c97ce897f31616472abcc3f287ca2288e8aaab99 Mon Sep 17 00:00:00 2001 From: Tommi Nylander <tommi.nylander@control.lth.se> Date: Wed, 11 Sep 2019 17:10:49 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e8dde86..442b85b 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ printf 'julia\n' >> julialab1 chmod +x julialab1 ``` (Feel free to choose another text editor if you don't like gedit.) This step only needs to be done once. Henceforth you can start julia with the environment setup by running `./julialab1` in the current directory. -4. Start `./julialab` -5. Install `BallAndBeam.jl` using command `using Pkg; Pkg.add("https://gitlab.control.lth.se/processes/BallAndBeam.jl.git"); using BallAndBeam` Lots of packages will now be installed, this will take some time. +4. Start `./julialab1` +5. Install `BallAndBeam.jl` using command `using Pkg; Pkg.add(PackageSpec(url="https://gitlab.control.lth.se/processes/LabProcesses.jl.git, rev=julia1)); Pkg.add(PackageSpec(url="https://gitlab.control.lth.se/processes/BallAndBeam.jl.git", rev=tommi)); using BallAndBeam` Lots of packages will now be installed, this will take some time. 6. Type `cp(joinpath(pathof(BallAndBeam),"src","FRTN35_lab1.jl")), "FRTN35_lab1.jl"); edit("FRTN35_lab1.jl")`. The script `FRTN35_lab1.jl` will now open in the chosen text editor, edit it while following the lab manual. If unsure about how a function works, type `?function_name` for help. 7. Run `Pkg.activate(pathof(BallAndBeam))` to install further required packages. -- GitLab