Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!1.eu.feeder.erje.net!bcyclone04.am1.xlned.com!bcyclone04.am1.xlned.com!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'subject:Python': 0.05; 'compiler': 0.05; 'subject:Question': 0.07; 'cc:addr:python-list': 0.10; 'python': 0.11; 'cc:name:python list': 0.16; 'processing)': 0.16; 'version?': 0.16; 'wrote:': 0.16; 'all,': 0.20; 'versions': 0.20; 'suggested': 0.20; '(or': 0.21; 'cc:addr:python.org': 0.21; 'cc:2**1': 0.22; '(all': 0.22; '2015': 0.23; 'header:In-Reply- To:1': 0.24; 'install': 0.25; 'compatible': 0.27; 'message- id:@mail.gmail.com': 0.28; 'subject:About': 0.29; 'that.': 0.30; 'window': 0.31; 'included': 0.32; 'problem': 0.33; 'received:google.com': 0.34; 'could': 0.35; 'installing': 0.35; 'something': 0.35; 'list': 0.35; 'except': 0.36; 'tool': 0.36; 'subject:: ': 0.37; 'associated': 0.38; 'version': 0.38; 'christian': 0.38; 'goes': 0.39; 'url:docs': 0.39; 'some': 0.40; 'here:': 0.62; 'information': 0.62; 'saw': 0.76; 'mingw': 0.84; 'oscar': 0.84; 'package"': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=cusTrgR0DK3A0RX29geF/9hLUbF4C5wOyyN2BUGYoEQ=; b=Qgj8QWPAUyr7UudpU5tf6bTGRAonEZmV42XXybsV8FjV4GPTcLWfYJbNE9ltwSpMxQ LDSirM00tdom05PfWH3W56VN+HOF9rYyATx68ozap0g6W+jl8U/8IJFvqm6IyHHggpLX 5D3Ftbhhc2/IznixuXm/Fhe/TGIzOR8Wja//jZfFQ1F8y4MGBTgB2/d/DFf+oW4cyIj6 79Fu+c8CP6dsuv9cFCsY0t61HSNZXQRTnQpCFvp4t2vor0AdZAyeTYmB6jsCwSdgtRsW IEbCg5J1TbhYmvc0KHqVOawG/I0m/EnwLH5/EHk8gWPX00oTeSf3qT34zHhj4XGEiGoz e3yA== X-Received: by 10.194.118.167 with SMTP id kn7mr4270886wjb.113.1432812293374; Thu, 28 May 2015 04:24:53 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: From: Oscar Benjamin Date: Thu, 28 May 2015 12:24:32 +0100 Subject: Re: Question About Image Processing in Python To: Serge Christian Ibala Cc: "Tutor@python.org" , Python List Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1432812758 news.xs4all.nl 2939 [2001:888:2000:d::a6]:46437 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 4507 X-Received-Body-CRC: 3704606597 Xref: csiph.com comp.lang.python:91364 On 28 May 2015 at 11:34, Serge Christian Ibala wrote: > Hello All, > > I want to know which version of Python is compatible (or can be associate= d > with which version of which "tools or package" for image processing) > > I am working under Window and it is so complicated to find out which vers= ion > of which tool goes with which other version? > > I want to use the following package > > =E2=80=9Cnumpy, matplotib, mahotas, ipython OpenCV and SciPy" I would just install the most recent released versions unless I saw some information that suggested a problem with that. You may want to consider installing something like the Anaconda Python distribution which includes most of these packages (all except mahotas) with a single installer: http://docs.continuum.io/anaconda/install.html You can see the list of packages included here: http://docs.continuum.io/anaconda/pkg-docs.html It will also install the mingw compiler that you could use to install mahotas using pip/conda. -- Oscar