I sat down tonight and have decided to leran how to use python. Inspired by this webpage scraping article. cam.ly/danesblog/2011/01/craigslist-arbitrage/
after working through a tutorial I:
1) downloaded and installed python: http://www.python.org/getit/ first 3.3 then 2.7
2) downloaded bs4: www.crummy.com/software/BeautifulSoup/bs4/download/
3) followed Brian Clapper's instructions: How can I install the Beautiful Soup module on the Mac?
- tried both easy_install and python setup.py install methods
I am still getting "ImportError: No module named bs4"
Python is installed in applications folder, the bs4 package auto installs in Library Is this the problem? I tried copying and moving the folder into Python application, but didn't work.
I have also tried both forms:
- from BeautifulSoup import BeautifulSoup
- from bs4 import BeautifulSoup
Thank you for the support.