paths (Newbee question)

Erik Max Francis max at alcyone.com
Thu Jan 23 19:26:30 EST 2003


"Joseph C. Slater" wrote:

> I'm trying to use os.popen to run ps2pdf on a file. This works fine,
> as
> long as p2pdf is in the path, along with all of the other things it
> needs. To make a long story short, how do I, inside python, not in the
> call, set these paths?
> 
> I'm expecting this is pretty easy. Problem being, after applying that
> required 4 hours, I'm not finding it.

In a Bourne-like shell, you have the syntax

	ENV1=something ENV2=somethingElse program args...

So try invoking it as something like

	PATH=$PATH:/other/paths/you/need ps2pdf ...

-- 
 Erik Max Francis / max at alcyone.com / http://www.alcyone.com/max/
 __ San Jose, CA, USA / 37 20 N 121 53 W / &tSftDotIotE
/  \ An undevout astronomer is mad.
\__/ Edward Young
    Bosskey.net: Quake III Arena / http://www.bosskey.net/q3a/
 A personal guide to Quake III Arena.




More information about the Python-list mailing list