How do YOU manage Perl modules when using a package manager?

前端 未结 10 1898
花落未央
花落未央 2020-11-28 07:11

A recent question here on SO got me thinking.

On most Linux distributions that I tried, some Perl modules would be available through the package manager. Others, of

10条回答
  •  离开以前
    2020-11-28 07:40

    I do the following on all my boxes:

    • I compile my own perl: I still use 5.8.[89] mostly, the stock 5.10.0 has a performance regression that hits me a lot, waiting for 5.10.1 to try again;
    • I use (and strongly recommend) the local::lib module to keep a module directory per project. Right now, that directory is rsync'ed to all the servers where the project is installed, but I'm testing using git instead;
    • I create a Task:: module for each project, so that I can install all dependencies with a single command.

提交回复
热议问题