Trying to install pylint directly from an hg repo to a virtualenv fails: $ pip install -e hg+http://hg.logilab.org/pylint#egg=pylint $ python -c "import pylint" Traceback (most recent call last): File "<string>", line 1, in <module> ImportError: No module named pylint
Apparently the problem is that the package contents are copied directly under .virtualenv/src/pylint/ instead of making a package under it (i.e., .virtualenv/src/pylint/pylint). I'd consider this a high impact bug as it effectively prevents forking the repo (unless that was the intention ;)) George _______________________________________________ Python-Projects mailing list [email protected] http://lists.logilab.org/mailman/listinfo/python-projects
