Data Analysis with Python Projects - Medical Data Visualizer

Hi there,

I am having issues with running project 2 - gives me error saying no module named pandas.

Updated pyproject.toml based on link at Data Analysis with Python Projects - Medical Data Visualizer

Error message im getting -

Traceback (most recent call last):
File “/home/runner/boilerplate-medical-data-visualizer-3/main.py”, line 2, in
import medical_data_visualizer
File “/home/runner/boilerplate-medical-data-visualizer-3/medical_data_visualizer.py”, line 1, in
import pandas as pd
ModuleNotFoundError: No module named ‘pandas’

1 Like

The error message indicates that the ‘pandas’ module is not installed or cannot be found in the current environment

pip install pandas

1 Like

Thanks - that works.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.