pip install visvis
python
import numpy as np
import visvis as vv
x = np.linspace(-2, 2, 100)
y = np.sin(2 * np.pi * x)
z = np.cos(2 * np.pi * x)
fig = vv.figure()
ax = vv.gca()
line = vv.plot(x, y, z, axes=ax)
ax.xlabel, ax.ylabel, ax.zlabel = 'X', 'Y', 'Z'
app = vv.use()
app.Run()