##// END OF EJS Templates
Use qt4agg, not qtagg, mpl backend in pylab profile....
Thomas Kluyver -
Show More
@@ -8,7 +8,7 b" load_subconfig('ipython_config.py', profile='default')"
8 8 lines = """
9 9 import matplotlib
10 10 %gui qt
11 matplotlib.use('qtagg')
11 matplotlib.use('qt4agg')
12 12 matplotlib.interactive(True)
13 13 from matplotlib import pyplot as plt
14 14 from matplotlib.pyplot import *
@@ -20,4 +20,4 b' from matplotlib.pyplot import *'
20 20 if hasattr(app, 'exec_lines'):
21 21 app.exec_lines.append(lines)
22 22 else:
23 app.exec_lines = [lines] No newline at end of file
23 app.exec_lines = [lines]
General Comments 0
You need to be logged in to leave comments. Login now