in reply to Re^3: Tcl module install issues
in thread Tcl module install issues
Most likely the perl you used to run Makefile.PL was not the perl you use to run your program (/home/RTG/common/local_install/Perl5.24/bin/perl).
Update: You can find the perl your shell runs with the following command:
which perl
Ideally this shows you the perl binary you want to use. Personally, I prefer to be explicit in specifying the full path to the Perl (version) I want to use when installing modules:
/opt/perl/perl-5.24/bin/perl Makefile.PL make make test make install
|
|---|