Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!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.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'tutorial': 0.03; 'context': 0.07; 'referring': 0.07; 'subject:Question': 0.07; 'runtime': 0.09; 'assume': 0.14; 'posted': 0.15; "'''": 0.16; 'quoted': 0.16; 'rights,': 0.16; 'said.': 0.16; 'to:name:python list': 0.16; 'files.': 0.16; 'wrote:': 0.18; 'normally': 0.19; 'installation': 0.23; 'this?': 0.23; 'dll': 0.24; "haven't": 0.24; "i've": 0.25; 'tutorials': 0.26; 'distribute': 0.26; 'header:In- Reply-To:1': 0.27; '(like': 0.30; 'message-id:@mail.gmail.com': 0.30; 'included': 0.31; 'option': 0.32; 'received:google.com': 0.35; "i'll": 0.36; 'similar': 0.36; 'to:addr:python-list': 0.38; 'files': 0.38; 'issue': 0.38; 'visual': 0.39; 'to:addr:python.org': 0.39; 'referred': 0.60; 'tell': 0.60; 'mentioned': 0.61; "you're": 0.61; 'within': 0.65; 'legal': 0.71; 'online': 0.71; 'oscar': 0.84; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=rIB6xT0ZFqlvaVxFB+igHjVn38/8LqG8IpmqA99C//g=; b=lvswBxyT7iPt4+f70kNAeUY6fxS8Pypz+HrE/P6dfhct+siCKo/WbOjtMJrb2Vd8UM VQ66Qo2uP+yCCPROeRuAHFpDQosIQqZQ41aRNsFjmI+jIUOWnNGff/0L34nHdeg/g0ev EpW+wFzPfHEGuyE31yJI9QfodfamXNU5lLUIAvbV1VZGA5cVOeh7w3pVy9g0g9G3j5xt Pjogi1YQOQRIP0sjqyVEEjmxOrHw/j/KfH0R5glriPxfpyaMMERcDqF4NsN2ge+XrFIr aVb1ZrHdKQ2w1LjZrd6Ms7IaHJCbfflmKXxvixT86OyRx9AJN87KlPhHEODQIJ12INJ3 75Mg== X-Received: by 10.58.68.138 with SMTP id w10mr933094vet.92.1371650282119; Wed, 19 Jun 2013 06:58:02 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <29523129-398e-41e0-adf8-ec3b93d757b0@googlegroups.com> References: <51c12394$0$29973$c3e8da3$5496439d@news.astraweb.com> <9ed3232e-d011-43b0-893f-4c3517c6d0a1@googlegroups.com> <29523129-398e-41e0-adf8-ec3b93d757b0@googlegroups.com> From: Oscar Benjamin Date: Wed, 19 Jun 2013 14:57:42 +0100 Subject: Re: Beginner Question: 3D Models To: Python List Content-Type: text/plain; charset=ISO-8859-1 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: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1371650285 news.xs4all.nl 15926 [2001:888:2000:d::a6]:59686 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:48714 On 19 June 2013 14:14, wrote: > This sounds similar to what I might want. So you know of any online tutor= ials for this? It's hard to tell what you're referring to since you haven't included any quoted context in your message (like I have above). I'll assume you're referring to what F=E1bio said. I've already posted the link to the py2exe tutorial (I assume F=E1bio used py2exe since nothing else was specified). The legal issue I mentioned is precisely about the .dll files that F=E1bio referred to. The reason that py2exe (and similar projects) do not bundle these into the .exe is because it normally isn't legal to distribute these files. From the tutorial: ''' you need to check redist.txt within your Visual Studio installation to see whether you have the legal right to redistribute this DLL. If you do have these rights, then you have the option to bundle the C runtime DLL with you application. ''' Oscar