How to fix ModuleNotFoundError: No module named 'scipy'

ModuleNotFoundError: No module named 'scipy'
For data science projects, we strongly recommend using Conda to manage binary dependencies.
conda install -c conda-forge scipy

Verification

Command
python -c "import scipy; print(scipy.__version__)"
Expected output
Success! scipy version x.y.z (e.g., 2.4.0)