Path: csiph.com!usenet.pasdenom.info!dedibox.gegeweb.org!gegeweb.eu!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!nerim.net!novso.com!newsfeed.xs4all.nl!newsfeed6.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'installed.': 0.05; 'python': 0.09; 'bindings': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'terry': 0.09; 'message- id:@dough.gmane.org': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'subprocess': 0.16; 'x.y': 0.16; 'wrote:': 0.17; 'jan': 0.18; 'solution.': 0.18; 'versions': 0.20; '2.x': 0.22; 'libraries': 0.22; 'work.': 0.23; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'supported': 0.26; 'am,': 0.27; 'module.': 0.27; 'header:X -Complaints-To:1': 0.28; 'install': 0.29; 'code': 0.31; 'to:addr :python-list': 0.33; 'version': 0.34; 'received:org': 0.36; 'but': 0.36; 'previous': 0.37; 'data': 0.37; 'subject:: ': 0.38; 'files': 0.38; 'some': 0.38; 'instead': 0.39; 'system.': 0.39; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'lost': 0.60; 'most': 0.61; 'email addr:gmail.com': 0.63; 'received:fios.verizon.net': 0.84; 'tough,': 0.84; 'transfer.': 0.84; 'careful': 0.91; 'disturb': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: HMM and CRF Package Date: Wed, 25 Jul 2012 15:58:50 -0400 References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-173-75-251-66.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20120614 Thunderbird/13.0.1 In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1343246364 news.xs4all.nl 6920 [2001:888:2000:d::a6]:40201 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26050 On 7/25/2012 11:58 AM, subhabangalore@gmail.com wrote: > As most of the libraries give so many bindings and conditions best way is to make it. Not very tough, I made earlier, but as some files were lost so was thinking instead of a remake if ready versions work. Or may look change from Python 3 to previous version so when 3 will be supported solution. But can I install both Python 3 and Python2.x or call 2.x from 3.x? You can have multiple versions of Python installed. Just be careful on *nix to use altinstall so as to not disturb the system install used by the system. Pythonx.y can only use code that works with x.y ;=). However, any Python process can use any other program via the subprocess module. You just have to work out the data transfer. -- Terry Jan Reedy