First Steps with PeriLab

Setting up the Environment

If want to use the PeriLab package you need to install it first. You can do it using the following commands:

using Pkg
Pkg.Apps.add("PeriLab")

or

julia> ] # ']' should be pressed

(@v1.9) pkg> app add PeriLab

Additionally, it is recommended to check the version of PeriLab that you have installed with the status command.

julia> ]

(@v1.9) pkg> status PeriLab
      Status `~\v1.6\Project.toml`
  [a93c6f00] PeriLab v1.0.0

If you want to make sure everything works as expected you can run the tests bundled with PeriLab:

using Pkg

Pkg.test("PeriLab") # This will take a few minutes.