Although my code is right, system doesnt work

i have a problem about using the replit system. I think my code is right but system doesnt work. below is the error i get.

 python3 main.py
Traceback (most recent call last):
  File "/home/runner/boilerplate-medical-data-visualizer/main.py", line 2, in <module>
    import medical_data_visualizer
  File "/home/runner/boilerplate-medical-data-visualizer/medical_data_visualizer.py", line 2, in <module>
    import seaborn as sns
ModuleNotFoundError: No module named 'seaborn'

did you install seaborn?

doesnt it come ready?

you need to install thinks but normally it is automatic. Can you share the repls so we can look at it

1 Like

Welcome to the forums, @EsadSeker!
Some libraries may not be pre-installed. You may need to type this in the shell.

$ python -m pip install seaborn

send a link to the repl. Are there any packager errors which pop up and then clear, just before this error?

1 Like

it solved the problem when i download the seaborn. thank you very much all you guys.

1 Like