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


Groups > comp.lang.python > #48823

Problems with pkg_resources

Date 2013-06-20 13:58 -0500
Subject Problems with pkg_resources
From Skip Montanaro <skip@pobox.com>
Newsgroups comp.lang.python
Message-ID <mailman.3638.1371754713.3114.python-list@python.org> (permalink)

Show all headers | View raw


I'm trying to get setup to work on pylint source.  I've installed
pylint, logilab-common and astroid in the usual manner, specifying
--user to get them into my private space:

    python setup.py install --user

If I attempt to import astroid from a Python prompt, everything's
fine:

% PYTHONPATH=/home/skipm/.local/lib/python2.7/site-packages python
Python 2.7.2 (default, Oct 17 2012, 03:11:33)
[GCC 4.4.6 [TWW]] on sunos5
Type "help", "copyright", "credits" or "license" for more information.
>>> import astroid
>>> astroid.__file__
'/home/skipm/.local/lib/python2.7/site-packages/astroid-0.24.3-py2.7.egg/astroid/__init__.pyc'

but pylint can't find it:

% PYTHONPATH=/home/skipm/3rdParty/astroid pylint Traceback (most
recent call last):
  File "/home/skipm/.local/bin/pylint", line 6, in <module>
    from pkg_resources import load_entry_point
  File "/opt/TWWfsw/distribute06/lib/python27/pkg_resources.py", line
2709, in <module>
    working_set.require(__requires__)
  File "/opt/TWWfsw/distribute06/lib/python27/pkg_resources.py", line
686, in require
    needed = self.resolve(parse_requirements(requirements))
  File "/opt/TWWfsw/distribute06/lib/python27/pkg_resources.py", line
584, in resolve
    raise DistributionNotFound(req)
pkg_resources.DistributionNotFound: logilab-astroid>=0.24.3

How do I work around this problem?  I'd rather be hacking on pylint
than struggling with distutils.

Thx,

Skip

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


Thread

Problems with pkg_resources Skip Montanaro <skip@pobox.com> - 2013-06-20 13:58 -0500

csiph-web