I tried to run streamlit app using github repository but I have problem with scipy optimize library, the messages is
ModuleNotFoundError: No module named ‘scipy’
2024-09-28 03:12:20.422 503 GET /script-health-check (127.0.0.1) 200.96ms
────────────────────── Traceback (most recent call last) ───────────────────────
/home/adminuser/venv/lib/python3.12/site-packages/streamlit/runtime/scriptru
nner/exec_code.py:88 in exec_func_with_error_handling
/home/adminuser/venv/lib/python3.12/site-packages/streamlit/runtime/scriptru
nner/script_runner.py:590 in code_to_exec
/mount/src/gui_equipotential_lines/app1.py:10 in
7 import streamlit as st
8 import pandas as pd
9 import numpy as np
❱ 10 from scipy.optimize import curve_fit
11 import matplotlib.pyplot as plt
12
13 @st.cache_data
────────────────────────────────────────────────────────────────────────────────
ModuleNotFoundError: No module named ‘scipy’
2024-09-28 03:12:25.388 503 GET /script-health-check (127.0.0.1) 152.35ms
Can give me guidelines to solve this problem?