Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.026 X-Spam-Evidence: '*H*': 0.95; '*S*': 0.00; 'shipped': 0.05; 'subject:text': 0.05; '<>,': 0.07; 'importerror:': 0.07; 'none,': 0.07; 'line:': 0.09; 'runs': 0.10; 'python': 0.11; 'before.': 0.16; 'box?': 0.16; 'met.': 0.16; 's/b': 0.16; 'skip:[ 40': 0.16; 'soap,': 0.16; 'src,': 0.16; 'subject:generator': 0.16; 'fix': 0.17; 'wrote:': 0.18; 'module': 0.19; 'work,': 0.20; 'command': 0.22; 'machine': 0.22; 'example': 0.22; 'import': 0.22; 'tests': 0.22; 'setup,': 0.24; "shouldn't": 0.24; 'skip': 0.24; 'cheers,': 0.24; "haven't": 0.24; 'options': 0.25; 'mention': 0.26; 'shown': 0.26; 'header:In-Reply-To:1': 0.27; 'installed': 0.27; 'appear': 0.29; 'chris': 0.29; "doesn't": 0.30; 'included': 0.31; 'page.': 0.31; 'that.': 0.31; 'extensively': 0.31; 'sep': 0.31; 'file': 0.32; 'probably': 0.32; 'run': 0.32; 'quite': 0.32; 'linux': 0.33; 'says': 0.33; 'running': 0.33; '(most': 0.33; 'fri,': 0.33; 'older': 0.33; 'url:non-standard http port': 0.33; 'received:66': 0.35; 'offered': 0.35; 'but': 0.35; 'there': 0.35; 'up!': 0.36; 'should': 0.36; 'list': 0.37; 'thank': 0.38; 'checks': 0.38; 'machines': 0.38; 'subject:needed': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'short': 0.38; 'recent': 0.39; 'itself': 0.39; 'morning': 0.39; 'support,': 0.39; 'to:addr:python.org': 0.39; 'how': 0.40; 'dangerous': 0.60; 'skip:c 50': 0.60; 'most': 0.60; 'tell': 0.60; 'received:unknown': 0.61; 'lower': 0.61; 'you.': 0.62; 'header:Message-Id:1': 0.63; 'charset:windows-1256': 0.64; 'zip': 0.64; 'more': 0.64; 'accompanying': 0.65; '20,': 0.68; 'million': 0.74; 'received:204': 0.75; 'hand': 0.80; 'atm.': 0.84; 'citizens.': 0.84; 'coffee': 0.84; 'column.': 0.84; 'boxes': 0.91; 'hands': 0.96; '2013': 0.98 X-Spam-Status: No, score=0.0 required=5.0 X-Spam-Level: From: Gene Heskett To: python-list@python.org Subject: Re: Missing py2exe, needed 4 a gcode generator to engrave text in fancy ttf fonts in steel Date: Fri, 20 Sep 2013 09:11:31 -0400 References: <201309200114.15092.gheskett@wdtv.com> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="windows-1256" Content-Transfer-Encoding: quoted-printable X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 77 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1379682696 news.xs4all.nl 15920 [2001:888:2000:d::a6]:43850 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54471 On Friday 20 September 2013 08:48:44 Chris Angelico did opine: > On Fri, Sep 20, 2013 at 3:14 PM, Gene Heskett wrote: > > Can someone take a look at > >=20 > > > e> > >=20 > > Then this is what I get: > > gene@coyote:~/src/F-Engrave-1.22_src$ python py2exe_setup.py > >=20 > > Traceback (most recent call last): > > File "py2exe_setup.py", line 4, in > > =20 > > import py2exe > >=20 > > ImportError: No module named py2exe > >=20 > > And tell me how to fix this so it runs on an older linux box? >=20 > The page you link to doesn't mention py2exe anywhere. Where did you > get that you need to run that command? >=20 > ChrisA =46rom the example command to run the setup, a short script: gene@coyote:~/src/F-Engrave-1.22_src$ cat py2exe_setup.py #run this from the command line: python py2exe_setup.py py2exe from distutils.core import setup import py2exe setup( options =3D {"py2exe": {"compressed": 1, "optimize": 0, } }, zipfile =3D None, console=3D[{"script":"f-engrave-122.py","icon_resources": [(0,"fengrave.ico"),(0,"fengrave.ico")]}] As shown on the setup page accompanying this , lower left of= =20 the list at the top of the page. Supposedly by using the src, I can build= =20 it with TTF support, which is missing from the file offered in the right=20 most python only column. All the other checks and tests on the setup page= =20 work, and all the other dependencies appear to have been met. The setup file itself I find, shouldn't have been included in the zip=20 without a README.linux that says to skip it. The shipped fengrave-122.py actually runs but is not finding any fonts. =20 There s/b quite a few installed since I have used TrueTypeTracer=20 extensively before. But I may have my machines mixed, and the computer=20 running the milling machine is probably where I did all that. I haven't had my morning coffee yet, so I am ill equipt to do more ATM. Thank you. Cheers, Gene =2D-=20 "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." =2DEd Howdershelt (Author) My web page: should be up! Seize the day, put no trust in the morrow! -- Quintus Horatius Flaccus (Horace) A pen in the hand of this president is far more dangerous than 200 million guns in the hands of law-abiding citizens.