본문 바로가기

Debugging

windows10 pycharm 사용 시 UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show() 오류 해결

 

 

openpose run.py 실행시 오류

 

import matplotlib.pyplot as plt

대신

import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt

을 써주면 해결된다.