Installation
To install this package, first, you need to install a julia executable from its official website. Version v1.0.0 and above is required. This package may not work on v0.7 and below.
If you are using a Mac, and have Homebrew installed, open Terminal.app and type:
brew cask install juliaNow I am using macOS as a standard platform to explain the following steps:
Open
Terminal.app, and typejuliato start a Julia session.Run
julia> using Pkg; Pkg.update() julia> pkg"add Geotherm"and wait for its finish.
Run
julia> using Geothermand have fun!
While using, please keep this Julia session alive. Restarting may recompile the package and cost some time.
Reinstall
In the same Julia session, run
julia> Pkg.rm("Geotherm"); Pkg.gc()Press
ctrl+dto quit the current session. Start a new Julia session and repeat the above steps.