diff --git a/Project.toml b/Project.toml index 94c17d7905..d6c6abc2cb 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ITensors" uuid = "9136182c-28ba-11e9-034c-db9fb085ebd5" authors = ["Matthew Fishman ", "Miles Stoudenmire "] -version = "0.9.5" +version = "0.9.6" [deps] Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" diff --git a/docs/src/getting_started/RunningCodes.md b/docs/src/getting_started/RunningCodes.md index a3c1b7b4b4..9a98fb325c 100644 --- a/docs/src/getting_started/RunningCodes.md +++ b/docs/src/getting_started/RunningCodes.md @@ -84,10 +84,12 @@ The above strategy of running code in the Julia REPL (interactive mode) works we To use this approach, we have provided a convenient one-line command: ```julia -julia> using ITensors; ITensors.compile() +julia> using ITensors, ITensorMPS, PackageCompiler + +julia> ITensors.compile() ``` -Once ITensors.jl is installed, you can just run this command in an interactive Julia session. It can take a few minutes to run, but you only have to run it once for a given version of ITensors.jl. When it is done, it will create a file `sys_itensors.so` in the directory `~/.julia/sysimages/`. +Note that you need to have ITensors.jl, ITensorMPS.jl, and PackageCompiler.jl installed. It can take a few minutes to run, but you only have to run it once for a given version of ITensors.jl. When it is done, it will create a file `sys_itensors.so` in the directory `~/.julia/sysimages/`. To use the compiled system image together with Julia, run the `julia` command (for interactive mode or scripts) in the following way: