in reply to Re^6: Using GIS/Shapefiles with Perl Tk Widgets
in thread Using GIS/Shapefiles with Perl Tk Widgets
But Ubuntu is one of those distros that have had problems with an unpatched Tk version. Try to install Tk with latest patches#!/usr/bin/perl use Tk; print $Tk::VERSION,"\n"; # 1-liner # perl -mTk -e 'print $Tk::VERSION' # On Windows one needs double quotes. # perl -mTk -e "print $Tk::VERSION"
|
---|