This is the registry that allows you to easily install Neuroblox.jl in Julia.
To add the NeurobloxRegistry simply open julia and execute
using Pkg
pkg"registry add https://github.com/Neuroblox/NeurobloxRegistry"
and then the NeurobloxRegistry will be installed and active on your machine.
If this is the first time you have used Julia on your current machine, you may also need to add the General Registry which can be done with
pkg"registry add General"
Once this is done, you'll be able to add Neuroblox.jl just like any other julia package, e.g.
using Pkg
Pkg.add("Neuroblox")
or
using Pkg
pkg"add Neuroblox"
or from the package-manager REPL mode (entered by hitting ]
in the regular Julia REPL)
pkg> add Neuroblox
If you need to remove the NeurobloxRegistry for whatever reason, you can run
using Pkg
pkg"registry remove NeurobloxRegistry"
If for some reason that does not work, you can remove the file NeurobloxRegistry
from your .julia/registries
folder manually (see https://docs.julialang.org/en/v1/base/constants/#Base.DEPOT_PATH for more info on the .julia
folder).