From: Will Budicm Date: Sat, 5 Sep 2020 10:32:30 +0000 (+1000) Subject: updated zlib missing. X-Git-Url: https://lifelog.hopto.org/gitweb/?a=commitdiff_plain;h=885e6c8fde2865ddd6f8cb0e3473a5cab2de7a03;p=LifeLog.git updated zlib missing. --- diff --git a/Installation.txt b/Installation.txt index 0aa3b29..21c3972 100644 --- a/Installation.txt +++ b/Installation.txt @@ -97,8 +97,10 @@ perlbrew use 5.30.1 sudo apt install libperl-critic-perl #libperl-dev is required for the lang server sudo apt install libperl-dev +sudo apt-get install zlib1g-dev sudo cpan Perl::LanguageServer + NOTICE -> Above Perl installation and modules can take time as they build (get compiled) and are tested using your computers configuration and hardware for optimal performance. The Perl::LanguageServer, can fail in tests, as it is development specific, this can be ignored. @@ -122,13 +124,13 @@ sudo cpan DateTime::Format::Human::Duration sudo cpan DateTime::Format::SQLite; sudo cpan Text::CSV; sudo cpan Number::Bytes::Human; +sudo cpan Gzip::Faster; sudo cpan CGI::Session; sudo cpan Number/Bytes/Human.pm; sudo cpan Regexp::Common; sudo cpan JSON; sudo cpan Switch; sudo cpan IPC::Run -sudo cpan Gzip::Faster; sudo cpan Syntax::Keyword::Try; #Install DBI module diff --git a/install_modules.sh b/install_modules.sh index 52e1267..897789a 100755 --- a/install_modules.sh +++ b/install_modules.sh @@ -10,7 +10,7 @@ ## git pull LifeLogInstall=install_lifelog_req_modules_2.0.sh -sudo cat Installation.txt | grep 'sudo apt install' > $LifeLogInstall | awk '{print $0, "-y"}' +sudo cat Installation.txt | grep 'sudo apt install' | awk '{print $0, "-y"}' > $LifeLogInstall sudo cat Installation.txt | grep 'sudo cpan' >> $LifeLogInstall sudo chmod +x $LifeLogInstall # The following is actual installation file generated. Don't run outside this script.