FreeBird.jl
Documentation for FreeBird.jl
Installation
FreeBird.jl is a Julia package. Install Julia first following the instructions in the download page.
Once Julia is installed, you can install the FreeBird package from the Julia REPL with:
julia> ] # press the "]" key on your keyboard to enter the Pkg managerthen
pkg> add FreeBirdAlternatively, you can install the package with:
using Pkg; Pkg.add("FreeBird")Useful for installing the package in a script or a notebook.
Or, if you want to install a specific branch from GitHub, you can do so with:
pkg> add https://github.com/wexlergroup/FreeBird.jl#branch_nameOr, again, to install the package in a script or a notebook:
using Pkg; Pkg.add(url="https://github.com/wexlergroup/FreeBird.jl",rev="branch_name")Remember to replace branch_name with the name of the branch you want to install.
To get back to the Julia REPL, press Ctrl+C or backspace (when the REPL cursor is at the beginning of the input).