Skip to content Skip to sidebar Skip to footer

Pycharm Not Recognizing Installed BeautifulSoup4 Module

I have trouble with Pycharm recognizing installed modules. I'm using Pycharm 2018.2.4 CE with Python 3.7 x64, on Windows 10. I don't have Python 2.x installed. I installed requests

Solution 1:

See if this helps:

Go to the following path:

File/ Settings/ Project: Project_Name/ Project Interpreter

Click on the plus sign on the right, find the module there and install it.

Also, if they are gray, it's because you have imported them but haven't used them yet. The only one which might have a problem is the last one with the red lines maybe.

This was discussed here

Also, below should be changed

from bs4 import BeautifulSoup

Post a Comment for "Pycharm Not Recognizing Installed BeautifulSoup4 Module"