aneccodeal
aneccodeal

Reputation: 8923

How to use a modifed local version of a package?

I installed the Mocha package like so:

julia> Pkg.add("Mocha")

Now I'd like to instead use a different Mocha package from a local clone of the repo where I've modified some of the files. What's the best way to go about this?

Upvotes: 1

Views: 109

Answers (1)

Dwight J. Browne
Dwight J. Browne

Reputation: 378

create a symbolic link within your ~/.julia/v0.[versionNumber]/ directory

For example:

Mocha_clone and Mocha_modified ln -s Mocha_modified Mocha

Upvotes: 1

Related Questions