-1

How do I install Devel::REPL including optional_features from the distro meta file?

Meta file: Devel-REPL-1.003025 / META.json

Tried with cpanm and cpan.

PERL_MM_USE_DEFAULT=1 does not help.

Miller
  • 34,962
  • 4
  • 39
  • 60
daxim
  • 39,270
  • 4
  • 65
  • 132

1 Answers1

1

It looks like App::cpanminus (cpanm) has a --with-all-features flag you can use.

For more details see: https://metacpan.org/pod/distribution/App-cpanminus/bin/cpanm#with-feature---without-feature---with-all-features.

Note if you've installed the latest version of Devel::REPL already you may have to use the --reinstall flag as well.

~$ cpanm --reinstall --with-all-features Devel::REPL
Kaoru
  • 1,540
  • 11
  • 14