davidssmith / DCEMRI.jl

DCE MRI analysis in Julia
Other
37 stars 16 forks source link

version testing #19

Closed elijahrockers closed 8 years ago

elijahrockers commented 8 years ago

What's the best way to test different revisions of the code?

Like, how do I uninstall DCEMRI.jl and replace it with a different version?

davidssmith commented 8 years ago

You can use Pkg.free("DCEMRI") to remove the current package and

Pkg.clone("https://github.com/davidssmith/DCEMRI.jl.git")

to get the latest master from this repo. If Pkg.free() doesn't work, just delete the DCEMRI directory under .julia/v0.4.

elijahrockers commented 8 years ago

got it