Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #16592
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <pedro.h.souto@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.016 |
| X-Spam-Evidence | '*H*': 0.97; '*S*': 0.00; 'automate': 0.05; 'subject:Python': 0.05; 'python': 0.08; 'scripts': 0.09; 'msi': 0.09; 'received:209.85.160.174': 0.09; 'received:mail- gy0-f174.google.com': 0.09; 'executable.': 0.16; 'wrote:': 0.18; 'subject:Windows': 0.18; 'header:In-Reply-To:1': 0.22; 'converts': 0.23; "user's": 0.23; 'windows': 0.26; 'developing': 0.26; 'script': 0.28; 'skip:\xc2 20': 0.30; 'standalone': 0.30; 'installation': 0.30; 'subject:?': 0.31; 'does': 0.32; 'message- id:@gmail.com': 0.33; 'header:User-Agent:1': 0.33; 'received:209.85.160': 0.33; 'to:addr:python-list': 0.34; '(not': 0.35; 'something': 0.35; 'file': 0.36; '8bit%:86': 0.37; 'push': 0.37; 'but': 0.37; 'run': 0.37; 'received:192': 0.37; 'received:google.com': 0.37; 'using': 0.38; 'menu': 0.38; 'received:209.85': 0.38; 'relatively': 0.39; "i'd": 0.39; 'url:org': 0.39; 'received:209': 0.40; 'to:addr:python.org': 0.40; 'received:192.168': 0.40; 'subject:Start': 0.67; 'subject:without': 0.67; 'view.': 0.67; '8bit%:100': 0.69; 'url:]': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=ak53RoC019NWyaosu2zUOiHuwang5WBk1KBNBewBePQ=; b=KEMtS2Ryvx+0sL7tZeS5ROz6Tum5OpWjLtWV74XU8SUJ0VKprG5A8RxbIurLU6fqA5 at5v297lK/WEIhC9YaaYxVDXdDMsgcaXs8Xs5Lcd9ibs5/10OQSh96B2TLEyaq5MdGEv VjaAnf1D5g3CXE7sQPDSvrYbYs+bRlShcgEsc= |
| Date | Sat, 03 Dec 2011 12:01:45 -0200 |
| From | "Pedro Henrique G. Souto" <pedro.h.souto@gmail.com> |
| User-Agent | Mozilla/5.0 (Windows NT 6.1; rv:8.0) Gecko/20111105 Thunderbird/8.0 |
| MIME-Version | 1.0 |
| To | python-list@python.org |
| Subject | Re: Install Python on Windows without Start Menu icons? |
| References | <ccd62b0f-f5d0-47a9-b664-bb8784a72917@s4g2000yqk.googlegroups.com> |
| In-Reply-To | <ccd62b0f-f5d0-47a9-b664-bb8784a72917@s4g2000yqk.googlegroups.com> |
| Content-Type | text/plain; charset=UTF-8; format=flowed |
| Content-Transfer-Encoding | 8bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.12 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3251.1322920923.27778.python-list@python.org> (permalink) |
| Lines | 19 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1322920923 news.xs4all.nl 6923 [2001:888:2000:d::a6]:58833 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.python:16592 |
Show key headers only | View raw
On 02/12/2011 16:34, snorble wrote: > Is it possible to automate the Python installation on Windows using > the MSI file so it does not add a Start Menu folder? I would like to > push out Python to all of my office workstations, but I'd like for it > to be relatively silent from the user's point of view. If you just want to run python scripts in those machines (not developing in it), you can use something like py2exe [http://www.py2exe.org/]. It converts a python script to a standalone executable. Good luck! -- Att; Pedro Henrique G. Souto <pedro.h.souto@gmail.com> ╔═════════════╗ ║ ²²²d○_○b²²² ║ ╚═════════════╝
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Install Python on Windows without Start Menu icons? snorble <snorble@hotmail.com> - 2011-12-02 10:34 -0800
Re: Install Python on Windows without Start Menu icons? "Pedro Henrique G. Souto" <pedro.h.souto@gmail.com> - 2011-12-03 12:01 -0200
Re: Install Python on Windows without Start Menu icons? Wolfgang Strobl <news3@mystrobl.de> - 2011-12-05 09:01 +0100
Re: Install Python on Windows without Start Menu icons? Lie Ryan <lie.1296@gmail.com> - 2011-12-05 23:52 +1100
Re: Install Python on Windows without Start Menu icons? snorble <snorble@hotmail.com> - 2011-12-05 13:26 -0800
csiph-web