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?

1 Like

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

2 Likes

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
1 Like

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

2 Likes

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

2 Likes