This commit is contained in:
Lucas Verney 2016-03-03 15:06:00 +01:00
parent a91da5e77b
commit c7191ecc47
1 changed files with 7 additions and 0 deletions

View File

@ -4,8 +4,15 @@ of Matplotlib.
"""
import collections
import math
import os
import shutil
import matplotlib as mpl
# Use "agg" backend automatically if no display is available.
try:
os.environ["DISPLAY"]
except KeyError:
mpl.use("agg")
import matplotlib.pyplot as plt
import numpy as np
import seaborn.apionly as sns