bs4 python module issue
  
 
     
     
             
                 
 
 
         up vote 
         0 
         down vote 
 
         favorite 
         
 
 
 
 
 
             
 
             
 
     
 
 When I run the command:   python checker.py capture.xml indication NULL    I get the error:      Traceback (most recent call last):   File "checker.py", line 1, in     ModuleNotFoundError: No module named 'bs4'    so I decided install bs4 in Python 24 but when I do:   pip install bs4    I get this message:      Requirement already satisfied: bs4 in c:program    filespython36libsite-packages Requirement already satisfied:    beautifulsoup4 in c:program filespython36libsite-packages (from    bs4) You are using pip version 9.0.1, however version 18.1 is    available. You should consider upgrading via the 'python -m pip    install --upgrade pip' command.    so indeed, the module is in that folder so I added c:program filespython36lib to the path environment variable just in case, bu...