in reply to How can I find installed packages in a broken Perlbrew?

One more thing: It might be helpful to determine which modules came with your version of Perl. See Module::CoreList and this funny tool to make this task a little bit easier. Regards.

«The Crux of the Biscuit is the Apostrophe»

  • Comment on Re: How can I find installed packages in a broken Perlbrew?

Replies are listed 'Best First'.
Re^2: How can I find installed packages in a broken Perlbrew?
by ikegami (Patriarch) on Dec 09, 2022 at 20:22 UTC

    You simply have to check in which directory it's installed.

    Core modules bundled with Perl:

    $ perl -V:'install(privlib|archlib)' installarchlib='/.../lib/5.36.0/x86_64-linux-thread-multi'; installprivlib='/.../lib/5.36.0';

    Installed by user:

    $ perl -V:'installsite(lib|arch)' installsitearch='/.../lib/site_perl/5.36.0/x86_64-linux-thread-multi'; installsitelib='/.../lib/site_perl/5.36.0';

    You might find a module in both if you upgraded a core module.