我已经使用matplotlib制作了一个人物,现在我正尝试使用matplotlib.pyplot.savefig将其保存到文件中
import matplotlib.pyplot as plt
# . . .
plt.savefig("/home/username/PycharmProjects/sandbox/images/result.png")
目录“ / home / username / PycharmProjects / sandbox / images /”存在,但不幸的是,它在plt.savefig调用时发生FileNotFoundError。
有人知道,如何解决这个问题?