Hi all, if this is too simple then please forgive me, but I'm new to Python and the tech support guy at my university can't figure it out either.
I'm trying to install beautifulsoup4 onto my computer. I use "easy_install beautifulsoup4," but get an error message (I pasted the syntax below). As you can see, I'm using Python 2.7.6, which should be compatible with beautifulsoup. However, when I try to install pip I also get an error message. I also have this problem when I use these same commands on the Python 3.3.3 shell that I'm using on the Mac. Considering that I'm getting the same results from both computers, I sense that there's some preliminary coding that has to be done before I can use the install command, but I don't know what that would be.
Thanks in advance,
Stephen
Python 2.7.6 (default, Nov 10 2013, 19:24:18) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> pip install beautifulsoup4
SyntaxError: invalid syntax
>>> pip install beautifulsoup4
SyntaxError: invalid syntax
>>> easy_install beautifulsoup4
SyntaxError: invalid syntax
>>> $ wget
http://launchpad.net/beautifulsoup/trunk/3.2/+download/BeautifulSoup-3.2.0.tar.gzSyntaxError: invalid syntax
>>> easy_install pip
SyntaxError: invalid syntax
>>>