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

From Peter Otten <__peter__@web.de>
Newsgroups comp.lang.python
Subject Re: pylint -> ImportError: No module named lazy_object_proxy
Date 2016-02-10 15:09 +0100
Organization None
Message-ID <mailman.10.1455113396.22075.python-list@python.org> (permalink)
References <n9fedv$d8a$1@dont-email.me>

Show all headers | 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