칼리\메타스플로잇/모의침투

칼리리눅스 파이썬 버전 변경

아놀드금자 2021. 2. 3. 00:32
728x90

kali 2020.4 버전 기준... 내부 기본 버전은 python2이다

하지만 내가 필요한건 python3...

 

python3 설치부터 시작했다.

 

pip설치는 덤

 

python3 설치는 했지만 기본실행은 여전히 python2인 상태

update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
update-alternatives --install /usr/bin/python python /usr/bin/python3.9 2

한 줄 씩 입력하면 끝

각 문장의 맨 뒤 숫자가 높은걸 기본으로 쓴다... 그래서 python2 뒤에는 1, python3 뒤에는 2를 붙였음

 

설정 끝

728x90