Path: csiph.com!usenet.pasdenom.info!news.albasani.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'scripts': 0.03; 'bytes,': 0.09; 'executable': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'windows': 0.15; 'files:': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'invoking': 0.16; 'type)': 0.16; 'folder': 0.16; 'sat,': 0.16; 'wrote:': 0.18; '(not': 0.18; 'stefan': 0.19; 'shell': 0.22; 'cc:addr:python.org': 0.22; 'recognize': 0.24; 'cc:2**0': 0.24; 'script': 0.25; 'extension': 0.26; 'header:In-Reply-To:1': 0.27; 'unix': 0.29; "doesn't": 0.30; 'message-id:@mail.gmail.com': 0.30; 'file': 0.32; 'there.': 0.32; 'probably': 0.32; 'run': 0.32; 'text': 0.33; 'guess': 0.33; 'hundreds': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'add': 0.35; 'there': 0.35; 'subject:?': 0.36; 'similar': 0.36; 'should': 0.36; 'two': 0.37; 'thank': 0.38; 'pm,': 0.38; 'subject:can': 0.39; 'most': 0.60; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=n3b2LJRS6pSHKS8rTgTigvnaGgtHgHnKJMK7lM90eW8=; b=Pubcche1Tbjbhn6p4ywjxRwRPETMf2SEeicxlO3VM7VjFfFd7IVFpAqlYPadtsl0MR j4WfsUWQuMUgfxFqW+nefoAD9AponBhQ1b459ThcE0ylqQDHGDJFScQ3pD0DWtXPTSAn 20qp/1ZI7wKcGI6rFsgLO+03O0iBEGTq1U78R/bjL5n4aKL2gTdC2vfO1c2E4bTMoJuS EXWDND/QG9oC+YBBukmnnlYG0RKDD+UpswpaFe0mAO8kktvD4iCz401tHHSR/88oIt/N XuHD+Ur2YggXBGhNrEPX+ZWDhXigdiZyom1k9Ujs412a9V3rzvPBs/D3rtWedhaW4qjH La6w== MIME-Version: 1.0 X-Received: by 10.52.244.138 with SMTP id xg10mr20047822vdc.40.1403931772485; Fri, 27 Jun 2014 22:02:52 -0700 (PDT) In-Reply-To: <103dbef9-d18b-4ccb-90c5-1d840a183451@googlegroups.com> References: <4bfec709-263b-4c82-93ed-054432fd9d7e@googlegroups.com> <53ae33ba$0$29985$c3e8da3$5496439d@news.astraweb.com> <103dbef9-d18b-4ccb-90c5-1d840a183451@googlegroups.com> Date: Sat, 28 Jun 2014 15:02:52 +1000 Subject: Re: What can Nuitka do? From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1403931781 news.xs4all.nl 2880 [2001:888:2000:d::a6]:34787 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:73698 On Sat, Jun 28, 2014 at 2:45 PM, CM wrote: > On Saturday, June 28, 2014 12:23:03 AM UTC-4, > Stefan Behnel wrote: > >> There should be a folder Python27/Scripts that >> contains the executable programs that Python packages >> install. > > Thank you, yes, it's there. But there are two > files: nuitka (I don't see an extension and > don't know the file type) and nuitka.bat. I > added C:/Python27/Scripts/nuitka to the Windows > path but it still doesn't recognize the name. Just add Scripts to path (not Scripts/nuitka), and it should run nuitka.bat. I would guess that the one without an extension is a Unix shell script of some sort; have a look at it, see if it's a text file that begins "#!/bin/sh" or similar. Most likely the file sizes of nuitka and nuitka.bat will be similar - of the order of hundreds of bytes, even, as they're probably just invoking Python. ChrisA