Your run command for the repl is misconfigured (it’s running python3 README.md instead of python3 main.py), either by mistake or a corrupted repl. You can run the repl by opening a shell window and entering python3 main.py. You’ll then see that you need to update your dependencies like in the many python data analysis project threads about the dependencies (it fails importing pandas).
If you think the repl the was corrupted, start with a new copy of the boilerplate and copy/paste your code to the new one.
Thank you. I started a new copy but now I have a new error.
Blockquote
Traceback (most recent call last):
File “main.py”, line 2, in
import demographic_data_analyzer.py
File “/home/runner/boilerplate-demographic-data-analyzer/demographic_data_analyzer.py”, line 1, in
import pandas as pd
ModuleNotFoundError: No module named ‘pandas’