Ved sinha
Ved sinha

Reputation: 79

Issue in Installing Python newspaper package on google colab

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

Answers (1)

Shibiraj
Shibiraj

Reputation: 769

If you are using python 3 notebook, you can install by :

!pip3 install newspaper3k

Upvotes: 1

Related Questions