여기에 Normal Debian Sid가 있는데, Apt가 Python의 다음 버전(2020년 8월 3일 현재)과 분명히 관련이 있는 것으로 보이는 것을 설치한 이유가 궁금합니다.
$ locate -b python3.9
/usr/lib/python3.9
$ du -s /usr/lib/python3.9/*
756 /usr/lib/python3.9/distutils
72 /usr/lib/python3.9/lib-dynload
484 /usr/lib/python3.9/lib2to3
380 /usr/lib/python3.9/tkinter
$ for d in `ls -d /usr/lib/python3.9/*` ; do dpkg -S $d ; done
python3-distutils: /usr/lib/python3.9/distutils
python3-tk:amd64: /usr/lib/python3.9/lib-dynload
python3-lib2to3: /usr/lib/python3.9/lib2to3
python3-tk:amd64: /usr/lib/python3.9/tkinter
$
답변1
이 패키지의 출처는 다음과 같습니다.python3-stdlib-extensions
, 어느버전 3.9가 몇 주 전에 추가되었습니다..
이는 Python 3.9로 전환하는 초기 단계이며 Python 3.8을 사용하는 프로그램에는 영향을 미치지 않습니다(현재 기본 버전은 불안정합니다).