Reputation: 79
I want to install python newspaper package on google colab but it is giving an error.
I am installing by
!pip install newspaper
ERROR: Command "python setup.py egg_info" failed with error code 1
in /tmp/pip-install-4yvxd5xq/newspaper/
Upvotes: 0
Views: 2557
Reputation: 769
If you are using python 3 notebook, you can install by :
!pip3 install newspaper3k
Upvotes: 1