Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!eternal-september.org!feeder.eternal-september.org!aioe.org!.POSTED!not-for-mail From: john Newsgroups: comp.lang.python Subject: Re: py2app dependency determination? Date: Wed, 25 Jun 2014 18:24:11 -0800 Organization: Aioe.org NNTP Server Lines: 40 Message-ID: References: <53a63b88$0$29988$c3e8da3$5496439d@news.astraweb.com> NNTP-Posting-Host: /jcKQXx1uvQAxMesV+ksRQ.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Complaints-To: abuse@aioe.org User-Agent: KNode/4.12.5 X-Notice: Filtered by postfilter v. 0.8.2 Xref: csiph.com comp.lang.python:73600 Steven D'Aprano wrote: > On Sat, 21 Jun 2014 16:50:22 -0800, john wrote: > >> Hi, trying to get py2app to work. It keeps saying that we need >> Pillow-PIL, which is wrong. And, anyways, Pillow-PIL fails to install. >> >> The program works fine as a normal python script, and it doesn't use >> Pillow- PIL. Any ideas? > > Yes. > > (1) Since this is specifically a py2app issue, you may have better > results from asking on a dedicated py2app mailing list. > > (2) Is it possible that Pillow or PIL is a dependency of py2app, and the > error has nothing to do with your script at all? What happens if you run > py2app on a minimal script like this? > > # hello.py > print("hello world") > > (3) If not, please post a minimal set of steps that demonstrates the > problem, and the *exact* error message generated (if possible). For > example: > > Download py2app version 1.3 from http://some.place.com > > Run the py2app installer. > > Create a minimal script hello.py (as above) > > Run py2app hello.py > > The result is ... [whatever actually happens] > > > We will try that, thank you