Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'interpreter.': 0.07; 'see:': 0.07; 'python': 0.09; 'that).': 0.09; 'bug': 0.10; 'cc:addr:python-list': 0.10; '(there': 0.16; '2.7.3': 0.16; 'eclipse': 0.16; 'fabio': 0.16; 'received:209.85.161.174': 0.16; 'registry': 0.16; 'shell:': 0.16; 'url:pydev': 0.16; 'wed,': 0.16; 'wrote:': 0.17; 'windows': 0.19; 'skip:p 30': 0.20; 'versions': 0.20; 'import': 0.21; 'cheers,': 0.23; 'cc:2**0': 0.23; 'cc:no real name:2**0': 0.24; 'command': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'message-id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'run': 0.28; 'related': 0.30; 'could': 0.32; 'says': 0.33; 'recommended': 0.33; 'version': 0.34; 'received:google.com': 0.34; 'path': 0.35; 'expected': 0.35; 'pm,': 0.35; 'received:209.85': 0.35; 'something': 0.35; 'there': 0.35; 'url:org': 0.36; 'compare': 0.36; 'should': 0.36; 'two': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'release': 0.39; 'header:Received:5': 0.40; 'your': 0.60; 'latest': 0.61; 'solve': 0.62; 'potentially': 0.66 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; bh=nHt+4HZ6Zq1pWkuXegrE8vgyfxVcTxiIPt+L+icMcys=; b=H8sBJpXrCjqVigAKdgP4PHM/3lgUqRZ93j4i8cQtAC27egDmcwbBeyAZYIcEjj2sSQ fDy+mmvmQnJdNGMjTCBBqk4sbwd07JfLfTgPvxExvYHv9D1Mor8pZH04L8mwl8RbSMiS k1yrzICS2JcoW+ux/yvA/RZO2YQl1jfc+mkUhhBBrIGTtNMOwRDUxQ6PfWITrf3x5WR/ deMICyv1NKtA47UxPmffFS+6fzaAlZ+faUiwJMf4cRrcGCNUVflZVs6JDfVjWdAON63o Qe46L21PhJqBLljwz7TV2JkFfCAkmlhRcxUNWVLKel9yb35mS0tNqDdYCJyWSr/Dooie MX4Q== MIME-Version: 1.0 In-Reply-To: References: From: Fabio Zadrozny Date: Sat, 30 Jun 2012 08:56:43 -0300 Subject: Re: PyDev IPython Confusion To: Wanderer Content-Type: text/plain; charset=ISO-8859-1 Cc: python-list@python.org 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: 25 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1341057427 news.xs4all.nl 6884 [2001:888:2000:d::a6]:56548 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:24695 On Wed, May 23, 2012 at 5:06 PM, Wanderer wrote: > I have two versions of Python and Ipython; Python 2.6.6 with Ipython > 0.11 and Python 2.7.3 with Ipython 0.12. When I run the Eclipse PyDev > console for the Python 2.7.3 it says it is using Ipython 0.11 as the > interpreter. Ipython 0.11 should not be in the Path for Python 2.7.3. > Is this a bug in Ipython 0.12? Is there a command to check the Ipython > version to verify it is Ipython 0.11 and not Ipython 0.12? Could this > be something in the Windows registry that Ipython 0.11 is the > 'registered' version of Ipython? > Please check on the latest PyDev 2.6.0 release (there was an issue related PYTHONPATH ordering inside PyDev which could potentially lead to that). If it doesn't solve it for you, check if your PYTHONPATH is what you expected inside the shell: import sys; print('\n'.join(sorted(sys.path))) and compare that with your configuration... ( note that the recommended place to ask PyDev questions is at stackoverflow with a PyDev tag... see: http://pydev.org/about.html ) Cheers, Fabio