3

I'm trying to install textblob on my system. By following the documentation, I had run the command

pip3 install -U textblob

But while running the command, I'm getting an error like this.

Error message while installing textblob

Mureinik
  • 297,002
  • 52
  • 306
  • 350
Satrajit Maitra
  • 103
  • 1
  • 1
  • 8

1 Answers1

0

pip install attempts to write files to /usr/local, as seen in the error message. You should run it from the root user.

Mureinik
  • 297,002
  • 52
  • 306
  • 350