perl how to install all dependencies that list in the text file?
I have a file which has a list of library I need for a perl script. How to tell the perl to automatically install all of them ?
The file I have it something like this.
depe开发者_JAVA百科ndencies.txt
Memoize
Carp Time::Hires
The easiest way is probably to install cpanm and then type:
cpanm <dependencies.txt
精彩评论