I make the first application on the Catalyst Framework, everything is strictly according to the book The Definitive Guide to Catalyst. However, when trying to create a template using the Template Toolkit with this command:

script/lolcatalyst_lite_create.pl view Web TT 

I get errors:

exists "/home/fladex/LolCatalyst-Lite/script/../lib/LolCatalyst/Lite/View"
exists "/home/fladex/LolCatalyst-Lite/script/../t" Couldn't load helper "Catalyst::Helper::View::TT" , "Can't locate Catalyst/Helper/View/TT.pm in @INC (@INC contains: /home/fladex/LolCatalyst-Lite/script/../lib /usr/lib/perl5/site_perl/5.12.3/i586-linux-thread-multi /usr/lib/perl5/site_perl/5.12.3 /usr/lib/perl5/vendor_perl/5.12.3/i586-linux-thread-multi /usr/lib/perl5/vendor_perl/5.12.3 /usr/lib/perl5/5.12.3/i586-linux-thread-multi /usr/lib/perl5/5.12.3 .) at (eval 225) line 2.

Tell me what you need to fix?

    1 answer 1

    Is the module for catalist installed?

     cpanm install "Catalyst::View::TT" 
    • Thanks, it helped :) I was guided by the book, where it says "Catalyst :: Helper :: Devel installed.". And I installed it, so I thought that all the necessary modules were installed. - FladeX