Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.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.045 X-Spam-Evidence: '*H*': 0.91; '*S*': 0.00; 'guys!': 0.09; 'mess': 0.09; 'messing': 0.09; 'whichever': 0.09; 'python': 0.11; '(windows': 0.16; '.py': 0.16; '3.3,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'idle,': 0.16; 'unix- style': 0.16; 'wrote:': 0.18; 'machine': 0.22; 'separate': 0.22; 'mon,': 0.24; "haven't": 0.24; '(or': 0.24; "i've": 0.25; 'header :In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; '(on': 0.31; '8:30': 0.31; 'them?': 0.31; 'run': 0.32; "i'd": 0.34; 'but': 0.35; 'received:google.com': 0.35; 'done': 0.36; 'thanks': 0.36; 'possible': 0.36; 'should': 0.36; 'so,': 0.37; 'two': 0.37; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'how': 0.40; 'even': 0.60; "you'll": 0.62; 'grab': 0.64; 'different': 0.65; 'other.': 0.75; 'delaying': 0.84; 'installer': 0.84; 'now)': 0.84; 'subject:Cutting': 0.84; 'carlos': 0.91; '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:date:message-id:subject:from:to :content-type; bh=7Le/15AWzJQjd5ngJUxw16sdzrepjBt9BtaY0qerC0s=; b=h7dXzrUej0Xwa1FYYv8W+Ln6+ZxOX93KQwA4LDxq7EnDa2nrK2SWP8J0lhCrcXObrs 4mEx7yCGdW+G1gBeHoGg3wXLGFTxxs9XQohRk3wvGBvtmyvW29wSMSZiDeLxHFYuxRQ1 NG3hDa/Nn5PdF44AvHo8WzPUZGtLtECqZgix0RP8VPBcYYltfNs+Mcicv5MDCJzsRrQb s7xu9mOzuBvHMwBsjJzrgY860SmVZ5YkhCkwgn0aqErFa2MCQsHC1JKBssC8rxyc9/uI xRKxtUiF4pS4rOqmTMZn3t6spyo1VVM+RtaZGNFrTN0Pe9HxEgtAt8dWrEXGala7mNf3 2vtA== MIME-Version: 1.0 X-Received: by 10.220.106.74 with SMTP id w10mr13917598vco.32.1369608176303; Sun, 26 May 2013 15:42:56 -0700 (PDT) In-Reply-To: References: <4d02f46f-8264-41bf-a254-d1c20469626e@googlegroups.com> Date: Mon, 27 May 2013 08:42:56 +1000 Subject: Re: Cutting a deck of cards From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 15 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1369608184 news.xs4all.nl 16005 [2001:888:2000:d::a6]:42199 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:46140 On Mon, May 27, 2013 at 8:30 AM, Carlos Nepomuceno wrote: > Thanks guys! I've been delaying my dive into Python 3 (because I don't need it for now) but I'd like to run some code just to learn how different it is from Python 2 and even other Python flavors. > > So, I'd like to know if it's possible to have multiple Python installations on the same machine (Windows 7 in my particular case) without messing one with each other. What care must I take not to mess up with them? Easy. Just grab the standard installer and hit it. You'll get two separate directories (or more; I have \Python26, \Python27, \Python32, \Python33 on this box), and you can run whichever you want. The one thing to take care of is .py associations; I haven't actually done it (on here, all I actually do is IDLE, pretty much), but as of 3.3, you should be able to use a Unix-style shebang to indicate which Python you want to invoke. ChrisA