Error

python3-distutils 를 설치하려고 하니, 유효하지 않은 패키지라는 메시지가 출력된다.

Package python3-distutils is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source

해당 패키지는 deprecated됐고, 다른 패키지로 대체가 가능하다.
출처는 다음과 같다.
출처: https://stackoverflow.com/questions/78438738/how-to-install-python3-distutils-on-ubuntu-24-04

Solution

Ubuntu 24.04 기준 아래 명령어를 실행해보자.

sudo apt install python3-setuptools

다행히 정상적으로 설치가 잘 진행된다.

+ Recent posts