Reputation: 14685
In Python I can use pip to dump a list of versions of installed modules
pip list > modules.txt
and use it to install that same list of versions of modules in another installation.
pip install -r modules.txt
How is this done with Perl?
(Note: I understand that I can install standalone Perl installations using perlbrew, which makes it the equivalent of Python's virtualenv, so I'm just missing the pip piece.)
Upvotes: 1
Views: 118
Reputation: 39158
cpanm HTTP::[email protected]
Upvotes: 2