I\'m trying to import NLTK in PyCharm, and get the following error. I\'m on Mac OS 10.5.8 with Python 2.7.6. What could be going on? I\'m completely new to programming, so sorry
I use PyCharm but never install packages through PyCharm, I always use Terminal and install them with mostly pip or easy_install (in my virtual environment). Maybe you can just install the package from terminal..
sudo pip install nltk
(https://pypi.python.org/pypi/nltk)
or
sudo easy_install nltk
(if you don't have pip installed)
And then in PyCharm, make sure in preferences you set your Project Interpreter to the python path with your installed packages.