Matplotlib et Pylab ne fonctionnent pas en Python CGI. Mais la même combinaison fonctionne dans le shell Python. Voici le code:Matplotlib et Pylab ne fonctionnent pas en Python CGI
#!C:/Python26/python
import cgi
import cgitb
import sys
import os
cgitb.enable()
# set HOME environment variable to a directory the httpd server can write to
os.environ[ 'HOME' ] = '/tmp/'
import matplotlib
# chose a non-GUI backend
matplotlib.use('Agg')
import pylab
#Deals with inputing data into python from the html form
form = cgi.FieldStorage()
# construct your plot
pylab.plot([1,2,3])
print "Content-Type: image/png\n"
# save the plot as a png and output directly to webserver
pylab.savefig("test.png")
Un code? Ou devrions-nous deviner ce que vous faites mal? –