Questions tagged [strawberry-perl]

Strawberry Perl is an open source community driven distribution of the Perl programming language for the Microsoft Windows platform.

Strawberry Perl is a environment for MS Windows containing all you need to run and develop perl applications. It is designed to be as close as possible to perl environment on UNIX systems.

Resources:

250 questions
0
votes
1 answer

Perl: Error installing Lingua::StanfordCoreNLP ("Out of memory!")

I tried to install the package Lingua::StanfordCoreNLP, but keep receing a simple, yet not very helpful error message: Out of memory! I am using the 5.16 release of DWIMPerl on Windows. I guess the problem is not related to the package, but to my…
user1769925
  • 588
  • 1
  • 6
  • 15
0
votes
2 answers

Strawberry Perl/Eclipse/EPIC - Can't locate MySql.pm in @INC (you may need to install the MySql module)

I'm using Eclipse with Strawberry Perl and Eclipse EPIC plugin. I'm new to perl and am trying to connect to a mysql db I have setup. When I try to use the use MySql; I get an error that: Can't locate MySql.pm in @INC (you may need to install the…
James Oravec
  • 19,579
  • 27
  • 94
  • 160
0
votes
1 answer

HTML::HTMLDoc installation issue on Strawberry Perl

I am trying to build HTML::HTMLDoc on Strawberry Perl (32 bit) on XP. I consistently face the following problem even after re-installing Strawberry. Any help will be greatly appreciated. Thanks. cpan> install HTML::HTMLDoc Fetching with…
sm535
  • 587
  • 7
  • 20
0
votes
0 answers

Perl One Liner : "Can't find string terminator "'" anywhere before EOF at -e line 1"

I know this is simple, but I am unable to get to the the root. I am getting an error and i am not able to decipher the root cause of it in this simple one liner. I am using Window 7 with Strawberry Perl 5.18.2.1-32bit. Program 1: For numbering only…
May
  • 1,158
  • 2
  • 13
  • 24
0
votes
2 answers

What will happen if we install modules when we have both Active and strawberry Perl in system?

I need to know what will happen if we install Perl modules using CPAN when both Active & Strawberry Perl existing in same system. I have both of them installed in my windows server. As both of them will be installed in different paths, below are my…
Amareesh
  • 368
  • 2
  • 5
  • 19
0
votes
1 answer

Why strawberry perl's msi installer much smaller?

I search the web and have the impression that msi installer doesn't compress well. So I want to know why strawberry perl's msi installer much smaller than the zip version.
ntysdd
  • 1,206
  • 2
  • 9
  • 19
0
votes
1 answer

GetAttributes uses wrong working directory in subthread

I used File::Find to traverse a directory tree and Win32::File's GetAttributes function to look at the attributes of files found in it. This worked in a single-threaded program. Then I moved the directory traversal into a separate thread, and it…
user2404501
0
votes
1 answer

Comparing modules available in different Strawberry Perl versions?

Background: We have recently got into some confusion, because one developer used Strawberry Perl 5.14.4.1 while the our buildserver uses 5.14.2. However, 5.14.4.1 contains more modules, so the script didn't work on the server. Fix is obvious: Use…
Martin Ba
  • 37,187
  • 33
  • 183
  • 337
0
votes
1 answer

Trying to install modules with Perl

I use Strawberry on windows and I'm trying to install couple of modules (PDL::Lite,PDL::Basic,PDL::MatrixOps,PDL::LinearAlgebra and Math::Random). I was able to install through CPAN the modules PDL::Basic, Math::Random. I had an error message (error…
user1166251
  • 115
  • 1
  • 4
  • 17
0
votes
1 answer

Why does perl exec() work differently in v5.18.2 (strawberry) from perl v5.8.8 (git-bash)?

Recently put Strawberry Perl on a Windows 8.1 machine and discovered that exec behaves differently with v5.8.8 in git-bash at /bin/perl than with Strawberry at /c/strawberry/perl/bin/perl. Here is the very simply script I found this with (purely by…
robmuh
  • 25
  • 1
  • 2
  • 4
0
votes
1 answer

When referencing two variables perl returns Use of uninitialized value

I have two directories in one directory is file HG111_1_001.txt, in the other directory is HG111_2_001.txt. This two files need to processed through a set of commands (sub single and sub double) and then brought back as a pair to sub playnice. The…
0
votes
1 answer

Perl Opendir with login?

I currently have one function to copy some files from the network drive and paste it to my local server folder. sub getNetworkDrive { #my $dir="\\\\network\\Path"; my ($dir, $move_to) = @_; opendir(DIR, $dir) or die "can't opendir $dir:…
Jerry Lam
  • 452
  • 1
  • 7
  • 21
0
votes
2 answers

Perl Strawberry: How to run a perl script by clicking

I'm working on Windows 7 and I have installed Strawberry. I would like to run a perl skript (test.pl): open OUTPUT, ">test.txt"; print OUTPUT "This is a test\n"; by just clicking on the file or redirect with left mouse click to Perl-program (open…
giordano
  • 2,954
  • 7
  • 35
  • 57
0
votes
2 answers

Computing system memory in use in Perl

I followed the top answer here, see below for code to get system memory being used at a given line in my perl code. I'm running Windows 7 Home Basic, 64 bit, 4 GB ram, 4.06 GB Virtual memory (As specified under advanced system settings under My…
user13107
  • 3,239
  • 4
  • 34
  • 54
0
votes
1 answer

Consuming a .NET Web Service in Perl with NTLM Authentication

I am attempting to call a .NET SOAP web service from a Perl script, as follows. #!/usr/bin/perl -w use strict; use SOAP::Lite 'trace', 'debug'; use Authen::NTLM; use Data::Dumper; my $user = '\\username'; my $pass = 'password'; my $host =…
indiguy
  • 505
  • 1
  • 9
  • 21
1 2 3
16
17