Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!feeds.phibee-telecom.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 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=python.org; s=200901; t=1410604821; bh=U9pbTRsLm2hxhQ91T72kkmGV35KyFIRGXgq7ncR2B9g=; h=To:From:Subject:Date:References:From; b=GANCdu2O8b5o9gO3TYDqOMyV8hvfbOaw9ZniCig324Pwwefze7rIonPj+wU7wIxge zCwMv763+/7+R94G1Ns3/fsbqGIi2lYLwpIYRaV4UYK8RwKnDZX3x6kNBV1jzLvX/2 PLdijE91JU8TUh+9wPCE9eWJLNwmuyr3fGLh52dY= X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python3': 0.07; 'source.': 0.07; 'python:': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'testing,': 0.09; 'python': 0.11; '(something': 0.16; 'easily,': 0.16; 'from:name:antoine pitrou': 0.16; 'i\xe2\x80\x99d': 0.16; 'message-id:@post.gmane.org': 0.16; 'received:213.41.240': 0.16; 'received:213.41.240.54': 0.16; 'received:80.91.229.3': 0.16; 'received:charlus.yi.org': 0.16; 'received:plane.gmane.org': 0.16; 'received:yi.org': 0.16; 'record,': 0.16; 'subject:versions': 0.16; 'travis': 0.16; 'subject:python': 0.16; 'from:addr:python.org': 0.16; 'wrote:': 0.18; '(in': 0.22; 'install': 0.23; 'header:User-Agent:1': 0.23; 'versions': 0.24; 'header:X-Complaints-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'newer': 0.30; 'assumes': 0.31; 'sep': 0.31; 'writes:': 0.31; 'anyone': 0.31; 'older': 0.33; 'problem': 0.35; 'but': 0.35; 'subject:?': 0.36; 'hi,': 0.36; 'url:org': 0.36; 'virtual': 0.37; 'stable': 0.38; 'to:addr:python-list': 0.38; 'rather': 0.38; 'recent': 0.39; 'does': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'easy': 0.60; 'hear': 0.63; 'love': 0.65; 'skip:\xe2 10': 0.65; '8bit%:43': 0.74; '8bit%:46': 0.78; 'antoine.': 0.84; 'grabbing': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Antoine Pitrou Subject: Re: Newer Debian versions of python on older Debian distros? Date: Sat, 13 Sep 2014 10:40:10 +0000 (UTC) References: <5D152EC0-CDBB-4AC9-B074-B648074CE372@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 213.41.240.54 (Mozilla/5.0 (X11; Linux x86_64; rv:32.0) Gecko/20100101 Firefox/32.0) 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: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1410604823 news.xs4all.nl 2896 [2001:888:2000:d::a6]:47574 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:77844 Hi, Chris Angelico gmail.com> writes: > > On Tue, Sep 9, 2014 at 5:04 AM, Travis Griggs gmail.com> wrote: > > Does anyone have experience with using newer versions of python debian packages (in particular, python3 > and python3-bson-ext from ‘testing’) on older stable versions (‘wheezy’ in this case)? If > someone’s figured out how to do this easily, I’d love to hear the recipe! > > > > I don't know about grabbing from testing, because that's fraught with > peril... but there's a pretty easy way to get a newer Python: build > from source. Basically, the standard incantation: [...] I know the OP solved their problem now, but for the record, you can also get binaries of recent Pythons (and other packages) by using conda: http://conda.pydata.org/miniconda.html#miniconda This assumes you don't mind having a local install rather than a system install of Python (something akin to a virtual environment). Regards Antoine.