About finding module dependencies

Yet again I stumble upon the question: What modules do I have to install?

I found a recent discussion on stackoverflow, an old discussion of perlmonks, and some modules (Perl::PrereqScanner, used by Dist::Zilla; Module::ScanDeps, used by PAR; and ="https://metacpan.org/module/CPAN:…

perlanalyst approaching ...

Last week I went to my first Perl workshop: 13. Deutscher Perl-Workshop. It has been a great experience – great talks and even greater people.

On the train to and from Frankfurt and at the workshop itself I hacked a bit on my pet project: the Perl Analyst. The goal is to build a PPI-based tool that parses your Perl documents, it may then answer your questions about your sources. The tool and the modules it consists of may also lead to refactoring tools.

There is a running prototype ="https://github.com/glauschwu…

Using modules that are not installed

Yesterday I stumbled across an error message of perl5 I've never seen before:
Can't locate loadable object for module X in @INC

I was trying to test a module A that uses a module B that isn't installed. The perlmonks told me that it had something to do with DynaLoader.

I already had a

use lib "'MODULEB/blib/lib";

in my setup.

What made it work was an additional

use li…