Install dependencies of a Dist::Zilla-based distribution
For a distribution that is built using Dist::Zilla, it is very easy to install all the dependencies:
dzil listdeps | cpanm
dzil listdeps
will almost build the distribution so it can determine the prerequisites and then list them each on one line. This list can be passed directly to cpanm
.
cool, thanks