Padre is an open source IDE for the Perl programming language written in Perl. It runs on Windows, Linux and Mac OSX.
1
vote
1answer
74 views
Based on Perl on Windows 7
I installed Padre perl, perl IDE on windows 7.And every time i run a program, i am getting an error saying,
perl: warning: Setting locale failed.
perl: warning: Please check that your locale ...
1
vote
2answers
95 views
Perl - Error caused by uninitialized value in print
I am writing a simple program that reads morse code from a file and converts it to plain text. I am getting some crazy errors though. I am not very familiar with perl and I am having to run it from ...
1
vote
1answer
487 views
Installing Padre (IDE) on ActivePerl?
When I go to Padre's official download site: http://padre.perlide.org/download.html, I see that the only option in Windows is to download DWIM Perl 5.14.2.1 (v7) which comes with Strawberry Perl. What ...
0
votes
1answer
82 views
Padre giving an error message about a line that doesn't exist
I have this program that runs OK on Windows with "perl program.pl" in the command prompt or "perl program.pl file1.txt file2.txt".
use strict;
use warnings;
print "there were ",scalar(@ARGV), " ...
1
vote
1answer
530 views
Can you pass command line arguments to Perl program run from Padre Run->Run Script?
Is there a way to pass command line arguments to a Perl program you are running from the Padre menu ("Run->Run Script")?
1
vote
3answers
301 views
Can't install Carp-1.25
I have installed Strawberry Perl for Windows, "DWIM Perl" from: http://dwimperl.com/.
I would like to use Carp. So I have downloaded Carp-1.25 from CPAN, un-TAR-ed it, and ran nmake.
I get:
...
3
votes
1answer
191 views
Padre: how to examine/inspect Unicode strings?
I have a project dealing with Unicode text manipulation. I am using Perl 5.014 and the Padre debugger v 0.86 (that's the latest Padre version for ActiveState Perl distribution).
In Padre, it's ...
0
votes
2answers
651 views
When I try to compile perl script in Padre, it has no response at all
I have a question about Padre. When I try to compile a hello world perl script, it has no response at all. The Padre can still be running. And also, if try to start debugger, the Padre will halt. I ...
1
vote
1answer
235 views
Padre: how to view/examine Perl's special variables?
Sorry if this is a newbie question. I can't seem to find a response for this question:
In Padre, how do I view/examine the values of Perl "special variables" (like $_, or $/, for example?)
It seems ...
3
votes
2answers
647 views
Padre under ActivePerl: not working?
I have ActivePerl version 5.12.2.1202 and PPM version 4.11 installed.
I would like to use a debugger with a GUI where I can see the Perl program variables.
After getting disappointed of Eclipse and ...
5
votes
1answer
416 views
perl Padre IDE standard input not working
I'm using padre 0.64 as perl IDE on windows vista The standard input command is not working , I tried the same code on the cmd line and it did work i.e
my $k = <>;
print $k;
Is there a ...
4
votes
1answer
200 views
Is it possible with Padre to run and debug Perl scripts with a different Perl version?
Padre is a (open) IDE for Perl that does look promising.
Since Padre is written in Perl itself, it is not apparent whether it's easily possible and practicable to run and debug Perl scripts in this ...
-2
votes
1answer
349 views
Perl Moose attribute not force type checking [closed]
I an using strawberry perl,
Moose 2.0010
In the class:
package Cat;
use 5.010;
use strict;
use Moose;
has 'name', is => 'ro', isa => 'Str', default => 'Beauty';
#has 'age', is ...
2
votes
1answer
263 views
How to Include source directory to Padre IDE?
How do you include source directory to Padre IDE for autocomplete and for running the script.
2
votes
2answers
569 views
How do I install a CPAN module site-wide while local::lib is present?
I've recently set up a new system and wanted to install Padre to check it out. The Padre install instructions specifically said to install local::lib, so I did so (although I've never had need of it ...
3
votes
1answer
303 views
How do I change the UI language on Padre?
I've installed the current version of Padre with Strawberry Perl for 64-bit Windows. My OS is in Portuguese, and the UI language of the Padre IDE is now Portuguese. How do I override the default and ...
4
votes
6answers
2k views
What's a free Perl IDE for Windows?
I am looking for a Windows Perl IDE with debugger like Komodo but free.
I have seen Eclipse+EPIC but I don't want to install Eclipse here .
Padre doesn't have debugger built in.
28
votes
20answers
2k views
What are the most important features of an IDE for Perl development?
As some of you might know I am the lead developer of Padre, the Perl IDE. In the first year of its development Padre became an acceptable text editor with some extra features for Perl development.
...

