From 1ad7295b1fc7b61af0ae587df7f3038e80d33480 Mon Sep 17 00:00:00 2001 From: peteyboy Date: Thu, 10 Feb 2022 07:27:48 +0000 Subject: [PATCH] updated readme with dependencies info --- README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d6a3de..6782d70 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,24 @@ # wordle-life -one-page app that turns wordle shares into standard file format used in the Conway's Game of Life community \ No newline at end of file +one-page app that turns wordle shares into standard file format used in the Conway's Game of Life community + + +## Dependencies +This app is not at all packaged. You'll have to make sure all the perl modules you need are installed. If you are on a community unix server with just user rights (like, say SDF), you may need to ask an admin to install for you, or alternately, you can make a personal perl library in your user space. + +Here's what I used to [install the perl module I needed with cpanm](https://stackoverflow.com/questions/2980297/how-can-i-use-cpan-as-a-non-root-user). It's just: + + curl http://cpanmin.us | perl - -l ~/perl5 App::cpanminus local::lib + eval `perl -I ~/perl5/lib/perl5 -Mlocal::lib` + echo 'eval `perl -I ~/perl5/lib/perl5 -Mlocal::lib`' >> ~/.profile + echo 'export MANPATH=$HOME/perl5/man:$MANPATH' >> ~/.profile + +then for each package, you can run *cpanminus*: + + $>cpanm CGI::Tiny + ... + $>cpanm Mojo::Template + ... + $>cpnam Mojo::Loader + ... +