3

I have started a Eclipse PyDev project, and found out that BeautifulSoup was missing.

I installed it using easy_install, and now the scripts runs fine from the command line. Eclipse, however, still thinks that BeautifulSoup isn't installed, displaying an annoying error message and not supplying any introspection or auto complete.

How can I force Eclipse to reload the system's python package list?

Adam Matan
  • 128,757
  • 147
  • 397
  • 562

1 Answers1

2

You have to reconfigure the python interpreters. Normally the automatic configuration utility should discover everything by itself, but otherwise you can manually add/remove packages. Here's a screenshot of where the settings are located:

enter image description here

In the only occasion in which I can recall I needed to do that, all I did was to remove the python interpreter from the list and running the Auto Config procedure again, but it should also be possible to simply add a library (bottom half of the screenshot).

HTH!

mac
  • 42,153
  • 26
  • 121
  • 131