에러 해결
[에러해결] tkinter 설치하기
체봄
2022. 6. 20. 14:32
$ pip3 install tkinter
를 입력하니 아래와 같은 에러 메시지가 떴다.
Defaulting to user installation because normal site-packages is not writeable
ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none)
ERROR: No matching distribution found for tkinter
해결 방법
sudo apt-get install python3-tk
루트 권한이 필요하다.
더보기
python3 -m pip install --upgrade pip
python3 -m pip install tk
이 방법도 해보았는데 이는 해결되지 않았다.
반응형