Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!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.017 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'output': 0.04; 'sys': 0.05; 'python': 0.09; 'sep': 0.09; 'cc:addr:python-list': 0.10; '"cannot': 0.16; '"python': 0.16; '2.7.3': 0.16; 'cc:name:python list': 0.16; 'install"': 0.16; 'subject:install': 0.16; 'wrote:': 0.17; '>>>': 0.18; 'import': 0.21; 'cc:2**0': 0.23; 'tried': 0.25; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'message-id:@mail.gmail.com': 0.27; 'subject:/': 0.28; 'run': 0.28; '"python"': 0.29; 'e.g.': 0.30; 'query': 0.30; 'window': 0.30; 'error': 0.30; 'running': 0.32; 'version:': 0.33; 'version': 0.34; 'received:google.com': 0.34; 'similar': 0.35; 'subject:with': 0.36; 'should': 0.36; 'subject:: ': 0.38; 'sure': 0.38; 'gives': 0.39; 'subject:...': 0.63; 'more': 0.63; 'within': 0.64; 'confirm': 0.64; '2013': 0.84; 'oscar': 0.84; 'rex': 0.84; 'subject:skip:S 10': 0.84; 'to:addr:hotmail.com': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=i/2DGCmezlerQg7fRMG/0zGy86BgTvtKWvRVoZO15T8=; b=vLlQH5Kl+4Suyvre57BnlbR2lXNo5Rsfkktu/ufszSXkqyug+iI8fKr5xD8a8YWOq5 QUCtkfPvcdeHKZSs+MfXMo0pCNtyzPUFvGT84xnQLpoZNWHGby2IG/1p7gvESCygx9iE NDjK31rELY+PFtBFkokC3LySf6TYgGGz/1NeMfxEFsNagyBKSZOZvtmE7FPNadAyHRsp fo6Spg33a91S6+Jb7uh1V6JkU8000ldqNwW0XyVrkgm1pSePkxH5ZfFK2Lfb/7f5WbZa FiL/BgEuk2yvMtZNu5RLvvEzKh3Uz6/LBngrUca2UZNqXPteH+09Ygeyf55/JPWOGFRz iWNA== X-Received: by 10.112.28.101 with SMTP id a5mr5140287lbh.0.1360546008116; Sun, 10 Feb 2013 17:26:48 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <5d3e0920-f204-4e5e-8c41-a8d44eddbde9@googlegroups.com> References: <3a451dc0-7f20-4116-92a6-fdaadc4d49fa@googlegroups.com> <59f1b8c5-1166-4c40-89f3-05304d1b6360@googlegroups.com> <5d3e0920-f204-4e5e-8c41-a8d44eddbde9@googlegroups.com> From: Oscar Benjamin Date: Mon, 11 Feb 2013 01:26:27 +0000 Subject: Re: Statistics...help with numpy/scipy install To: Rex Macey Content-Type: text/plain; charset=ISO-8859-1 Cc: Python List 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: 22 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1360546468 news.xs4all.nl 6909 [2001:888:2000:d::a6]:38928 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:38630 On 10 February 2013 22:14, Rex Macey wrote: > I should have added that the setup gives an error window "Cannot install" "Python version 3.3 required, which was not found in the registry." Yes, you should have added this information. Are you sure that Python 3.3 is installed? Have you tried running it? e.g. when I run "python" in my terminal I get: oscar:~$ python Python 2.7.3 (default, Sep 26 2012, 21:51:14) [GCC 4.7.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> >From within Python I can also query the version: >>> import sys >>> sys.version '2.7.3 (default, Sep 26 2012, 21:51:14) \n[GCC 4.7.2]' Can you get similar output to confirm that Python 3.3 is installed? Oscar