Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #73486 > unrolled thread
| Started by | john <nospam@no.net> |
|---|---|
| First post | 2014-06-21 16:50 -0800 |
| Last post | 2014-06-25 18:24 -0800 |
| Articles | 3 — 2 participants |
Back to article view | Back to comp.lang.python
py2app dependency determination? john <nospam@no.net> - 2014-06-21 16:50 -0800
Re: py2app dependency determination? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-06-22 02:12 +0000
Re: py2app dependency determination? john <nospam@no.net> - 2014-06-25 18:24 -0800
| From | john <nospam@no.net> |
|---|---|
| Date | 2014-06-21 16:50 -0800 |
| Subject | py2app dependency determination? |
| Message-ID | <lo598h$qic$1@speranza.aioe.org> |
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? thanks
[toc] | [next] | [standalone]
| From | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| Date | 2014-06-22 02:12 +0000 |
| Message-ID | <53a63b88$0$29988$c3e8da3$5496439d@news.astraweb.com> |
| In reply to | #73486 |
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]
--
Steven
[toc] | [prev] | [next] | [standalone]
| From | john <nospam@no.net> |
|---|---|
| Date | 2014-06-25 18:24 -0800 |
| Message-ID | <log08a$2f2$1@speranza.aioe.org> |
| In reply to | #73488 |
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
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web