Skip to content Skip to sidebar Skip to footer

Python Cannot See Installed Module `news`

Python declares that the news module is not installed: $ python -c 'import news' Traceback (most recent call last): File '', line 1, in ImportError:

Solution 1:

Well, I downloaded the module from pypi to see what is inside it. The news-1.0.zip has only one file called news_module.py and has one method read_news in it.

So, you should try

$ python -c "import news_module"

Q: Are you looking for newspaper module instead?

Post a Comment for "Python Cannot See Installed Module `news`"