Traceback (most recent call last):
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/pudb/init.py", line 152, in runscript
dbg._runscript(mainpyfile)
File "/opt/virtualenvs/python3/lib/python3.8/site-packages/pudb/debugger.py", line 500, in _runscript
self.run(statement)
File "/usr/lib/python3.8/bdb.py", line 580, in run
exec(cmd, globals, locals)
File "", line 1, in
File "helper.py", line 8, in
from bs4 import BeautifulSoup
ModuleNotFoundError: No module named 'bs4'
I've debug the program and found this
Traceback (most recent call last): File "/opt/virtualenvs/python3/lib/python3.8/site-packages/pudb/init.py", line 152, in runscript dbg._runscript(mainpyfile) File "/opt/virtualenvs/python3/lib/python3.8/site-packages/pudb/debugger.py", line 500, in _runscript self.run(statement) File "/usr/lib/python3.8/bdb.py", line 580, in run exec(cmd, globals, locals) File "", line 1, in
File "helper.py", line 8, in
from bs4 import BeautifulSoup
ModuleNotFoundError: No module named 'bs4'
Here is the code line 152
This is my main.py file