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: References: 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: 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:102761 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 > 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 > > import astroid > File "/usr/lib/python2.7/site-packages/astroid/__init__.py", line 54, in > > from astroid.nodes import * > File "/usr/lib/python2.7/site-packages/astroid/nodes.py", line 39, in > > from astroid.node_classes import ( > File "/usr/lib/python2.7/site-packages/astroid/node_classes.py", line > 24, in > > 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?