Bug after run code: updating constantly, resources in red color, module not find

Problem description:
Can´t run my code because of a repeated update and modulenotfounderror
RAM and CPU constantly in red color

Expected behavior:
Get mi Ok after run my code:
if print_data:
print(“Number of each race:\n”, race_count)
print(“Average age of men:”, average_age_men)
print(f"Percentage with Bachelors degrees: {percentage_bachelors}%“)
print(f"Percentage with higher education that earn >50K: {higher_education_rich}%”)
print(f"Percentage without higher education that earn >50K: {lower_education_rich}%“)
print(f"Min work time: {min_work_hours} hours/week”)
print(f"Percentage of rich among those who work fewest hours: {rich_percentage}%“)
print(“Country with highest percentage of rich:”, highest_earning_country)
print(f"Highest percentage of rich people in country: {highest_earning_country_percentage}%”)
print(“Top occupations in India:”, top_IN_occupation)

return {
    'race_count': race_count,
    'average_age_men': average_age_men,
    'percentage_bachelors': percentage_bachelors,
    'higher_education_rich': higher_education_rich,
    'lower_education_rich': lower_education_rich,
    'min_work_hours': min_work_hours,
    'rich_percentage': rich_percentage,
    'highest_earning_country': highest_earning_country,
    'highest_earning_country_percentage':
    highest_earning_country_percentage,
    'top_IN_occupation': top_IN_occupation

vs

 python3 main.py
Traceback (most recent call last):
File “/home/runner/boilerplate-demographic-data-analyzer/main.py”, line 2, in
import demographic_data_analyzer
File “/home/runner/boilerplate-demographic-data-analyzer/demographic_data_analyzer.py”, line 1, in
import pandas as pd
ModuleNotFoundError: No module named ‘pandas’

Actual behavior:
Not working

Steps to reproduce:
Import exercise from freecodecamp git repository (data analysis with python).
Copy the base code and paste it in Visual Studio Code.
Built my code. Copy and paste it into replit tab.
Fix indentation and possible error issues.
Run code on main tag
Updating for more than 20 minutes (CPU and RAM constantly in red color)
MudeleNotFoundError: No module named ‘pandas’

Bug appears at this link: https://replit.com/@ManuMap/boilerplate-demographic-data-analyzer#main.py

Screenshot(s)/Screen Recording:

Browser/OS/Device: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36

Replit Profile: https://replit.com/@ManuMap

It looks like you forgot to install the pandas library…

Maybe you can run this code in the shell:

pip install pandas