Ubuntu 22.04에서 Jupyter 설치하기
Ubuntu 22.04에서 Jupyter를 설치하는 가장 깔끔한 방법은 Python 가상환경(venv) + pip 방식입니다. 시스템 Python을 오염시키지 않고 프로젝트별로 패키지를 관리할 수 있기 때문입니다. Jupyter 공식 문서도 pip install jupyterlab, pip install notebook 설치 방식을 안내합니다. 1. 시스템 패키지 업데이트 sudo apt updatesudo apt upgrade -y 2. Python, pip, venv 설치Ubuntu 22.04에는 기본적으로 Python 3가 포함되어 있지만, 개발에 필요한 패키지를 함께 설치하는 것이 좋습니다. sudo apt install -y python3 python3-pip python3-venv ..