I downloaded BeautifulSoup.
Then I updated pip:
pip install --upprade pip
Then BS is installed:
pip install beautifulsoup4
Everything seems to be working fine, but now when I run these three lines of code:
from BeautifulSoup import BeautifulSoup
import urllib2
import csv
I get this error.
Traceback (last last call):
file "C: \ Users \ rshuell001.spyder2 \ temp.py", line 1, from from BeautifulSoup import BeautifulSoup ImportError: No module named BeautifulSoup
I am using Anaconda-Spyder
What am I doing wrong?
asher source
share