views:

1220

answers:

1

I have Pydev installed and running without problem with Python 2.6. I installed Pylons 0.9.7 RC 4 into virtual environment, then configured new interpreter to pint into virtual environment and this one is used for pylons project. My problem is that code auto completion does not work for a classes from base library (one that are installed with base python installation), and it works without any problem with classes from virtual environment.

TIA

+3  A: 

perhaps this or this would help

BTW: I guess that this is the correct behavior, this interpreter uses only the packages that are installed withing the virtualenv (this is the whole intent and purpose of the virtualenv isn't it?)

Bartosz Radaczyński