Debugging
windows10 pycharm 사용 시 UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show() 오류 해결
dev-jinee
2020. 6. 24. 16:05
openpose run.py 실행시 오류
import matplotlib.pyplot as plt
대신
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
을 써주면 해결된다.