Chris Rackauckas
Chris Rackauckas

Reputation: 19132

Is there a way to find out which packages depend on a specific package (Julia)?

As the title says, is there a way to find out which packages depend on a specific package in Julia?

Upvotes: 9

Views: 792

Answers (1)

Fengyang Wang
Fengyang Wang

Reputation: 12051

julia> Pkg.dependents("JSON")
53-element Array{AbstractString,1}:
    ...

Note this only includes packages you have installed.

Upvotes: 10

Related Questions