python3 main.py
Traceback (most recent call last):
File “/home/runner/36551262/main.py”, line 2, in
import demographic_data_analyzer
File “/home/runner/36551262/demographic_data_analyzer.py”, line 1, in
import pandas as pd
ModuleNotFoundError: No module named ‘pandas’
exit status 1
The Python script you are running (main.py ) is trying to import the pandas module, but it couldn’t find it:
You’ll need to enter pip install pandas into the shell command prompt (you will see a tab called “shell” or you can select “shell” from the tools menu to the left).
Let us know if there is an error message or any feedback after typing this.