import matplotlib.pyplot as plt import matplotlib.patches as mpatches fig, ax = plt.subplots(1,1) ax.plot([1,2,3], [4,5,10]) arrow = mpatches.FancyArrowPatch((1.5,2), (3,4), arrowst yle='->') ax.add_patch(arrow)