habe soeben mittels
Code: Alles auswählen
sudo apt-get install python-matplotlib python-matplotlib-doc ipythonBibliotheken erfolgreich installiert.
Wenn ich jetzt aber folgenden Code eingebe
Code: Alles auswählen
import pylab as p
x = p.arange(0,7,0.01)
y = p.sin(x)
p.plot(x,y)
p.show() Wie kann das sein, bzw. was muss ich tun?
