search for: perl64

Displaying 3 results from an estimated 3 matches for "perl64".

2013 Apr 02
1
gdata selectively not working
...> library(gdata) gdata: read.xls support for 'XLS' (Excel 97-2004) files ENABLED. gdata: read.xls support for 'XLSX' (Excel 2007+) files ENABLED. <snip> > test <- read.xls("C:/Dropbox/R/library/gdata/xls/ExampleExcelFile.xlsx", verbose=T) Using perl at C:\Perl64\bin\perl.exe Using perl at C:\Perl64\bin\perl.exe Converting xls file “C:/Dropbox/R/library/gdata/xls/ExampleExcelFile.xlsx” to csv file “C:\Users\Robin\AppData\Local\Temp\RtmpWkmGgn\file1bccd743d36.csv” ... Executing ' "C:\Perl64\bin\perl.exe" "C:/Dropbox/R/library/gd...
2005 Dec 05
2
Multiple versions of software
I have a user who wants a version of Perl built with -Duse64bitint that is accessable as perl64. I've pulled down the src.rpm and I'm going through the perl.spec file looking to see what all needs to be changed. So, before I really screw up my system, I thought I would ask if anyone here has any particular advice. Help? -- Matt
2010 May 22
1
calling Perl script from R on Windows 7
Hi list, I would like to capture the console output of a Perl script by running the script from R. I have tried the following: # Create perl script cat( 'print "Hello World\n";',file="hello.pl" ) # Trial 1 system(command="c:\\Perl64\\bin\\perl hello.pl") -I saw no output for the above command. I have used this method before to run perl scripts that performed tasks, but only now do I want to capture the perl output from the print command within the perl script # Trial 2 system(command=paste(Sys.getenv("COMSPEC"...