Path: csiph.com!goblin3!goblin1!goblin.stu.neva.ru!uio.no!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Python': 0.05; 'installed.': 0.05; 'python3': 0.05; 'dependency': 0.07; 'cc:addr :python-list': 0.09; '"python"': 0.09; 'python': 0.10; '(at': 0.13; 'package,': 0.13; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'nick': 0.16; 'wrote:': 0.16; 'typing': 0.18; 'runs': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; '3.x': 0.22; 'sep': 0.22; 'sorry,': 0.22; 'am,': 0.23; 'installation': 0.23; 'header:In-Reply-To:1': 0.24; "i've": 0.25; "doesn't": 0.26; 'installed': 0.26; 'fri,': 0.27; 'not.': 0.27; 'question': 0.27; 'message-id:@mail.gmail.com': 0.27; 'accomplished': 0.29; 'now?': 0.29; 'pep': 0.29; 'system?': 0.29; 'work.': 0.30; 'checked': 0.31; "can't": 0.32; 'run': 0.33; 'ubuntu': 0.33; 'received:google.com': 0.35; 'fresh': 0.35; 'but': 0.36; 'there': 0.36; 'subject:: ': 0.37; "won't": 0.38; 'anything': 0.38; 'mean': 0.38; 'does': 0.39; 'still': 0.40; 'some': 0.40; 'ever': 0.60; 'default': 0.61; '2.7.': 0.84; 'chrisa': 0.84; 'to:none': 0.91; 'more:': 0.91 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=kDi9SAf0yaK6MouAl5D4nCxOVjGJ3w5kmVtz8hXo0VI=; b=TrMIaLGsTu/aS/ChNU41U/sw0e6KZpS72AJK0jjLwO7YjozEzMSSa567dGKJerTf1d bSM15CWiIITiB9rFDYJx1IH98WiY0Qi8+M/wvcN0mHB9NYH5+3SATw22hh73L9TnV28X yk+5EBw+a8sd4c5jcvB2sxPc/w6Anoyx9a9nVHws1j3DIPsUZ3bzjmdZU4yZcvoUw847 OAaewddgflk3pj4wdmVKPEv5MjbbI23rvL0/pOFYUNx+4i8fA+dTasdeeZDFPuYjZ6fH mgbiFyP7DuZ9blny7ZdL3Zt2xwCkujpugRAaDJBsCeTd8Zx2EIiJF8EJ2gAQsupe5rJ1 bzPQ== MIME-Version: 1.0 X-Received: by 10.107.36.8 with SMTP id k8mr24978346iok.157.1441298948568; Thu, 03 Sep 2015 09:49:08 -0700 (PDT) In-Reply-To: References: <4d764608-4091-4600-a1ed-ac11bd790792@googlegroups.com> Date: Fri, 4 Sep 2015 02:49:08 +1000 Subject: Re: Porting Python Application to a new linux machine 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.20+ 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: 1441298951 news.xs4all.nl 23844 [2001:888:2000:d::a6]:33971 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:95963 On Fri, Sep 4, 2015 at 2:23 AM, Luca Menegotto wrote: > Il 03/09/2015 17:53, Nick Sarbicki ha scritto: >> >> Is 3.x the default on ubuntu now? My 14.10 is still 2.7. Although it >> does have python3 installed. > > > I've checked my Ubuntu 15.04, and the default is 2.7.9. > There is also Python3 (3.4.3), but sorry, I can't remember if I've manually > installed it or not. If you mean that typing "python" runs 2.7, then that's PEP 394 at work. For compatibility reasons, 'python' doesn't ever run Python 3. (At least, not any time soon.) The question is more: What comes installed on a fresh system? Anything can be dragged in as a dependency of some other package, but a normal Ubuntu desktop installation won't depend on Python 2 for anything. Or at least, that's the plan; I don't know whether it's been accomplished yet or not. ChrisA