SciPy
Scientific Computing with Python
Installation
Spyder
apt-get install python3-spyder spyder3
NumPy
apt-get install python3-numpy python-numpy-doc
SciPy
apt-get install python3-scipy python-scipy-doc
Matplotlib
apt-get install python3-matplotlib python-matplotlib-doc
Example
plot_sine.py
import numpy as np import matplotlib.pyplot as plt if __name__ == '__main__': x = np.arange(0, 2*np.pi, 0.02) y = np.sin(x) plt.plot(x, y) plt.show()
CONTENT.html | 2022-01-18 | 1.2 KB |