본문 바로가기
프로그래밍/Python

❗[Python] "jupyter: Command not found" 오류 해결 (Mac Terminal)!!

by research_notes 2023. 1. 30.
728x90
반응형

✅ 설치 방법 두 가지

주피터 노트북은 아래 두 가지 방법 중 하나만 선택해서 설치하면 됩니다.

(1) 아나콘다(Anaconda) 설치

  • 데이터 분석 환경에 필요한 패키지가 한 번에 설치됨
  • 추천: 초보자, 데이터 분석 위주 사용자

🔗 아나콘다 공식 다운로드
👉 https://www.anaconda.com/products/distribution

설치 과정에서 함께 설치되는 주피터 노트북을 실행하면 바로 사용 가능!

(2) CMD 창에서 직접 설치 (파이썬과 pip 이용)

  • 가볍고 빠른 설치
  • 원하는 라이브러리만 직접 설치해서 사용하는 사용자에게 추천

💻 CMD에서 Jupyter Notebook 설치 & 실행

1. python 버전 확인 (아래 단계를 차근차근 따라 하시면 됩니다.)

python --version

위 코드에서 에러가 난다면, 아래 코드 시도해보기

python3 --version

 

 

2. pip3 install --upgrade pip (꼭 필요한 건 아니지만, 에러가 날 경우 시도해보기)

pip3 install --upgrade pip

 

 

3. Install Jupyter (Jupyter 설치)

pip install jupyter

 

위와 마찬가지로, 파이썬3과 2를 구분지어야 한다면, pip -->  pip3

pip3 install jupyter

 

4. jupyter notebook 실행

jupyter notebook

이렇게 치면, 보통은 주피터 노트북 웹 브라우저가 실행된다.

 

5. Error "jupyter: Command not found." 

"jupyter: Command not found." 라는 에러가 뜬다면, 아래 코드 입력

   *위에서 python3를 사용했다면 python 대신 python3 사용하기

python -m notebook

V

V

V

 

반응형

🔁 요약 정리

단계명령어
파이썬 버전 확인 python --version 또는 python3 --version
pip 업그레이드 (선택) pip3 install --upgrade pip
Jupyter 설치 pip install jupyter 또는 pip3 install jupyter
실행 jupyter notebook 또는 python -m notebook

 

2023.04.12 - [프로그래밍/ETC] - [Mac] Docker Installation

 

[Mac] Docker Installation

Install Docker Desktop: (https://docs.docker.com/engine/install/) Check --> Mac with Apple silicon vs Mac with Intel chip Download Docker Desktop for Mac with Apple silicon $ softwareupdate --install-rosetta **두가지 설치방법 중 한가지 골라서

kimtutor.tistory.com

 

2023.04.06 - [프로그래밍/ETC] - [Ubuntu] docker 에러 해결 "docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?"

 

[Ubuntu] docker 에러 해결 "docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon

docker 설치 후, 명령어를 실행했을 때 아래와 같은 에러가 발생한다.$ sudo docker run hello-worlddocker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.See 'docker run --help'. 아래

kimtutor.tistory.com

 

728x90
반응형