리눅스에 파이썬 업그레이드와 VSCode 설치
□ 리눅스에 파이썬 업그레이드
1. python3.11 로 업그레이드
sudo apt install python3.11
2. update시 오류 발생문제 해결
sudo apt remove python3-apt
sudo apt update
sudo apt upgrade
apt-get install python3-apt
□ VSCode 설치 -> 동기화
홈피에서 받아서 설치하면 됨
□ VSCode에서 깃허브 사용
1. 깃허브 설치
sudo apt install git
2. 사용자 메일과 이름 등록
git config –global user.email “메일주소@gmil.com”
git config –global user.name “이름”
3. 저장소 가지(브런치)를 메인으로 등록
git push –set-upstream origin main