I need to access a python package from within the virtualenv created for a new TG project.
>From outside the virtualenv: Python 2.5.4 (r254:67916, Apr 4 2009, 17:55:16) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from Bio import * >>> Looks like it found the package just fine. Now the same thing from within the virtualenv: Python 2.5.4 (r254:67916, Apr 4 2009, 17:55:16) [GCC 4.3.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from Bio import * Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named Bio >>> I tried loading the Bio package using 'easy_install biopython,' which looks like it worked just fine, but python still has no luck finding the Bio package within the virtual environment. Must be another step I'm missing somewhere. Any ideas? Dan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

