다음과 같이 pyplot을 사용하여 간단한 그래프를 그리려고합니다.
import matplotlib.pyplot as plt
plt.plot([1,2,3],[5,7,4])
plt.show()
그러나 그림이 나타나지 않고 다음 메시지가 나타납니다.
UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.
여러 곳에서 다음을 사용하여 matplotlib의 구성을 변경해야하는 것을 보았습니다.
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
이 작업을 수행했지만 모듈을 찾을 수 없기 때문에 오류 메시지가 나타납니다.
ModuleNotFoundError: No module named 'tkinter'
그런 다음 pip install tkinter
(가상 환경 내부)를 사용하여 "tkinter"를 설치하려고했지만 찾지 못했습니다.
Collecting tkinter
Could not find a version that satisfies the requirement tkinter (from versions: )
No matching distribution found for tkinter
또한 가상 환경을 사용하여 Pycharm Community Edition IDE에서이 모든 것을 실행하고 있으며 운영 체제가 Linux / Ubuntu 18.04임을 언급해야합니다.
그래프를 표시하기 위해이 문제를 어떻게 해결할 수 있는지 알고 싶습니다.