I'm currently writing a simple Python (2.7) program using the Python Image Library. How can I make my program portable, so that I can run in on another computer (that doesn't already have PIL installed).

I've looked into creating a setup.py file, but I'm not sure this is on the right track.

link|improve this question

This depends a lot on your targeted platform, and what you want your installation story to look like. setup.py can be used to specify dependencies, but it's really for distributing things to other developers; your users will need to run 'python setup.py install', and that will in turn download & install PIL. But if you're trying to distribute a single file with all your dependencies, it gets a lot more complicated (eg, you'll basically be distributing a copy of the Python interpreter and the stdlib, plus your program, plus any dependencies). – AdamKG Jan 13 at 11:58
what operating system? if it is some linux, you might want to create a package and let the distro's package manager take care of the dependencies. – Uku Loskit Jan 13 at 11:59
Ideally Windows (7) and Ubuntu, thought if that's too ambitious I'd settle for one or the other – Landric Jan 13 at 12:04
@AdamKG - I'd happily settle for having users run 'python setup.py install'. I can't figure out how to format the setup.py file to have it install PIL though – Landric Jan 13 at 12:14
feedback

1 Answer

up vote 2 down vote accepted

OK, sounds like setup.py is the right way to go here - you should already have a setup() function in it, add an install_requires entry like so:

setup(
    name="mypkg", version="0.0.1",
    # etc etc blah blah blabh
    install_requires=["PIL"],
)

That should do it! When your users run setup.py install, it will download PIL & run PIL's own installation routine.

link|improve this answer
Man, is that all there is to it? I'll test this when I get to a workstation, but for now, thanks for the answer – Landric Jan 13 at 14:07
This gives me USER WARNING: Unknown distribution option: 'install_requires' – Landric Jan 22 at 14:44
1  
Is your setup() from distutils or setuptools? It should be setuptools. Can you also check your setuptools version with import setuptools; setuptools.__version__? – AdamKG Jan 23 at 12:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.