Re: Problem getting the correct version of Python using Inline.

2007-10-31 Thread Eric Wilhelm
# from Gravunder Greg-CDIG04 # on Wednesday 31 October 2007 08:38: >The problem is that when I run this, it is using python version 2.2.3 >which doesn't have the Numeric module.  The numeric module does exist > in 2.4.2.  If I source that environment before I run the perl script, > I get version 2

Problem getting the correct version of Python using Inline.

2007-10-31 Thread Gravunder Greg-CDIG04
I have a small python program that I am trying to include in a perl program using inline. Here is my perl program called test.pl #!/usr/bin/perl -w use Inline Python => <<'END'; #!/bin/env python import sys, string print sys.path print sys.version # import Numeric # from Numeric import * d