Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.3 KB

README.md

File metadata and controls

37 lines (26 loc) · 1.3 KB

QED

Stable Dev Code Style: Blue

Installation

To install the current stable version of QED.jl you may use the standard julia package manager within the julia REPL

julia> using Pkg

# add local registry, where QED is registered
julia> Pkg.Registry.add(Pkg.RegistrySpec(url="https://github.com/QEDjl-project/registry"))
# add general registry again to have it join the local registry
julia> Pkg.Registry.add(Pkg.RegistrySpec(url="https://github.com/JuliaRegistries/General"))

julia> Pkg.add("QED")

or you use the Pkg prompt by hitting ] within the Julia REPL and then type

# add local registry, where QED is registered
(@v1.9) pkg> registry add https://github.com/QEDjl-project/registry
# add general registry again to have it join the local registry
(@v1.9) pkg> registry add https://github.com/JuliaRegistries/General

(@v1.9) pkg> add QED

To install the locally downloaded package on Windows, change to the parent directory and type within the Pkg prompt

(@v1.9) pkg> add ./QED.jl