scipy

Python library for mathematics, science, and engineering computing

brewmacoslinux
Try with needOr install directly
Source

About

Software for mathematics, science, and engineering

Commands

scipy

Examples

Import scipy and use optimization functions in Python$ python3 -c "from scipy.optimize import minimize; print('scipy installed')"
Perform linear algebra operations with scipy$ python3 -c "from scipy import linalg; import numpy as np; A = np.array([[1,2],[3,4]]); print(linalg.det(A))"
Use scipy for statistical analysis$ python3 -c "from scipy import stats; print(stats.norm.pdf(0))"