Installation
TwoDimensional is an offical Julia package which can be installed in several ways as explained here.
Using the package manager
At the REPL of Julia, hit the ] key to switch to the package manager REPL (you should get a ... pkg> prompt) and type:
pkg> add TwoDimensionalwhere pkg> represents the package manager prompt.
To check whether the TwoDimensional package works correctly, type:
pkg> test TwoDimensionalLater, to update to the last version (and run tests), you can type:
pkg> update TwoDimensional
pkg> build TwoDimensional
pkg> test TwoDimensionalIf something goes wrong, it may be because you already have an old version of TwoDimensional. Uninstall TwoDimensional as follows:
pkg> rm TwoDimensional
pkg> gc
pkg> add TwoDimensionalbefore re-installing.
To revert to Julia's REPL, hit the Backspace key at the ... pkg> prompt.
Installation in scripts
To install TwoDimensional in a Julia script, write:
using Pkg
Pkg.add(PackageSpec(url="https://github.com/emmt/TwoDimensional.jl", rev="master"));or with url="git@github.com:emmt/TwoDimensional.jl" if you want to use ssh.
This also works from the Julia REPL.