Python library for mathematics, science, and engineering computing
Software for mathematics, science, and engineering
scipy$ python3 -c "from scipy.optimize import minimize; print('scipy installed')"$ python3 -c "from scipy import linalg; import numpy as np; A = np.array([[1,2],[3,4]]); print(linalg.det(A))"$ python3 -c "from scipy import stats; print(stats.norm.pdf(0))"