views:

144

answers:

2

Attached are screenshots (right click: View Image to see in full size):

alt text alt text

The intellisense doesn't recognize the module. Am I missing a step? Thank you for the help.

+1  A: 

I am surprised that BeautifulSoup.py landed in 'c:\Python27\lib', shouldn't it be in 'c:\Python27\lib\site-packages'. How did you install BeautifulSoup?

[Edit:]

The links provided by S.Lott tells why this should be the case.

pyfunc
I just copied and pasted the file to a folder that was displayed when I used print path in IDLE. Since this folder was in the path location, according to the docs, it should work right? Importing it in IDLE works! What can I do to make it work on Netbeans?
Serg
"I just copied and pasted the file to a folder that was displayed when I used print path in IDLE". Bad policy. That's not where site packages go. They go in the site-packages directory. For example, Google turns up this: http://www.cs.washington.edu/homes/borning/python.html
S.Lott
@Sergio Tapia : Please install it rather than drop the file in lib directly. It will get installed in site-packages and you would be able to import it. Let us know if that resolves the issue.
pyfunc
+1  A: 

This may help: http://www.cs.washington.edu/homes/borning/python.html

And this: http://docs.python.org/library/site.html

And this: http://docs.python.org/install/

And this: http://pythonsimple.noucleus.net/python-install/python-site-packages-what-they-are-and-where-to-put-them

S.Lott
@Sergio Tapia: It is a good opportunity for you to go through the docs provided here and understand it. +1 for S.Lott for providing the reference.
pyfunc