ModuleNotFoundError: No module named 'feedparser'

908 views Asked by At

I have Python 3.11 and I have done everything expect Anaconda thing in this video below to try and fix this issue.

https://www.youtube.com/watch?v=RvbUqf3Tb1s&t=181s&ab_channel=TechWithTim

Here is the error:

C:\Python311\python.exe C:\Users\16789\PycharmProjects\cyberNewsfeed\main.py Traceback (most recent call last): File "C:\Users\16789\PycharmProjects\cyberNewsfeed\main.py", line 1, in import feedparser ModuleNotFoundError: No module named 'feedparser'

Attached is a screenshot of my interpeter and structue.

Tried everything in the linked video besides anaconda and i was expecting it to run. I restarted my computer as well.

1

There are 1 answers

3
arise21 On

You have to install the missing package. Try this in a shell inside your python environment.

pip install feedparser