I'm new to Python/Mac OS and I'm looking to work through the NLTK textbook, but I'm having some problems installing it. I've been looking for solutions to this for a while now but unfortunately all the solutions don't seem to be able to work for me (or I'm misunderstanding exactly how to utilize them).
The basic problem I'm having is that NLTK just doesn't seem to be installed despite following the instructions. The following code gives me an error that no such module exists:
import nltk
nltk.download()
I think the problem I'm having is that pip/easy_install aren't correctly installing. From reading about a bit I suspects that this may be to do with having two versions of Python on my computer (the Mac OS X pre-installed one, and the one which I installed.) Although, at the moment I'm not sure how to check this, or which version of python the setups are utilizing. So as an initial step, how do I quickly check whether there are multiple versions of python installed on my machine?
If this turns out not to be the root cause of the problem, all of the instructions for installing pip on the following page do not work for me (all the commands return syntax errors): http://www.pip-installer.org/en/latest/installing.html.
I'm sorry for the unorganized approach to this problem, hopefully with a few pointers I'll be able to work out where I'm going wrong.