Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #102761

Re: pylint -> ImportError: No module named lazy_object_proxy

Path csiph.com!news.swapon.de!fu-berlin.de!uni-berlin.de!not-for-mail
From Peter Otten <__peter__@web.de>
Newsgroups comp.lang.python
Subject Re: pylint -> ImportError: No module named lazy_object_proxy
Date Wed, 10 Feb 2016 15:09:33 +0100
Organization None
Lines 43
Message-ID <mailman.10.1455113396.22075.python-list@python.org> (permalink)
References <n9fedv$d8a$1@dont-email.me>
Mime-Version 1.0
Content-Type text/plain; charset="UTF-8"
Content-Transfer-Encoding 8Bit
X-Trace news.uni-berlin.de G2ghHAZM2YxkZrORza7YuwU4Ydoilf/xqGXVjdbLVlhA==
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.001
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'importerror:': 0.05; 'installed.': 0.05; '22,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:module': 0.09; '24,': 0.16; '39,': 0.16; '54,': 0.16; 'grepping': 0.16; 'hint': 0.16; 'missing?': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'received:t-ipconnect.de': 0.16; 'wrote:': 0.16; 'installation': 0.23; 'import': 0.24; '(most': 0.24; 'module': 0.25; "i've": 0.25; 'header:User-Agent:1': 0.26; "doesn't": 0.26; 'header:X -Complaints-To:1': 0.26; 'finds': 0.29; 'anybody': 0.32; 'run': 0.33; 'source': 0.33; 'michael': 0.33; 'traceback': 0.33; "skip:' 20": 0.34; 'file': 0.34; 'gives': 0.35; 'skip:" 50': 0.35; 'but': 0.36; 'modules': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'to:addr:python.org': 0.40; 'received:de': 0.40; 'care': 0.60; 'more': 0.63; 'here': 0.66; 'pip': 0.84; 'subject:skip:l 10': 0.84
X-Injected-Via-Gmane http://gmane.org/
X-Gmane-NNTP-Posting-Host p57bd9bf9.dip0.t-ipconnect.de
User-Agent KNode/4.13.3
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.21rc2
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Xref csiph.com comp.lang.python:102761

Show key headers only | View raw


Michael Ströder wrote:

> HI!
> 
> Hmm, I've used pylint before but my current installation gives me an
> ImportError:
> 
> $ pylint
> Traceback (most recent call last):
>   File "/usr/bin/pylint", line 3, in <module>
>     run_pylint()
>   File "/usr/lib/python2.7/site-packages/pylint/__init__.py", line 22, in
>   run_pylint
>     from pylint.lint import Run
>   File "/usr/lib/python2.7/site-packages/pylint/lint.py", line 44, in
>   <module>
>     import astroid
>   File "/usr/lib/python2.7/site-packages/astroid/__init__.py", line 54, in
>   <module>
>     from astroid.nodes import *
>   File "/usr/lib/python2.7/site-packages/astroid/nodes.py", line 39, in
>   <module>
>     from astroid.node_classes import (
>   File "/usr/lib/python2.7/site-packages/astroid/node_classes.py", line
>   24, in
> <module>
>     import lazy_object_proxy
> ImportError: No module named lazy_object_proxy
> 
> Can anybody here give me a hint what's missing?
> six, astroid and tk modules are installed.
> Any more dependencies?

How about the dependencies' dependencies? Grepping through the astroid 
source finds

./astroid/__pkginfo__.py:install_requires = ['six', 'lazy_object_proxy', 
'wrapt']

But doesn't pip care of these?


Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

pylint -> ImportError: No module named lazy_object_proxy Michael Ströder <michael@stroeder.com> - 2016-02-10 14:39 +0100
  Re: pylint -> ImportError: No module named lazy_object_proxy Peter Otten <__peter__@web.de> - 2016-02-10 15:09 +0100
    Re: pylint -> ImportError: No module named lazy_object_proxy Michael Ströder <michael@stroeder.com> - 2016-02-10 18:25 +0100

csiph-web