I use Anaconda's Python 3.6.3 distribution and it comes with NLTK installed, but not with NLTK DATA, which I need for a project, the problem is, when I try to install with
nltk.download()
I get
PermissionError: [Errno 13] Permission denied: '/usr/share/nltk_data'
So, I did some research, and I see people suggesting to run Python as
sudo python
but if I do that, it will launch the base Linux's Python, not Anaconda's.
tl;dr
I need some way to do something like
sudo conda python
If you have other suggestions that might work, I'll take it too.
Thanks!