일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- cv2
- Training
- Inference
- deeplearning
- qtdesigner
- 블록체인
- Perceptron
- 퍼셉트론
- 유가 급등
- Python
- pyqt
- terminal
- itksnap
- 비트코인
- loss
- DataSet
- img
- keras
- TFRecord
- opencv
- TF
- 세계사
- TensorFlow
- 세계대전
- error
- dtype
- numpy
- 딥러닝
- 유로화
- 브렉시트
Archives
- Today
- Total
활연개랑
[ERROR 해결] UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show() 본문
Python
[ERROR 해결] UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. plt.show()
승해tmdhey 2022. 4. 11. 13:23반응형
다음 에러는 matplotlib에서 GUI 창에 plot을 띄우려고 하는데, GUI를 띄우기위한 plot 파이썬 모듈이 없을 때 나타납니다.
UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.
plt.show()
따라서, Qt5Agg, GTKAgg, Qt4Agg, 또는 pyqt5를 설치해서 다음과 같은 오류를 해결할 수 있습니다.