IT/Python

[Python] macOS에 pip로 모듈 설치 시, command not found가 출력되는 경우 해결 방법

wookiist 2018. 1. 3. 16:14

 

[Python] macOS에 pip로 모듈 설치 시, command not found가 출력되는 경우 해결 방법


macOS에 jupyter-notebook을 설치했는데, 실행해보니 "command not found" 에러가 발생하였다.

구글링을 해보니, jupyter 공식 깃헙에서 이에 대한 토론이 이루어지고 있었다.[1]

이 중, 내 경우에 해결된 방법을 소개한다.

 

다음과 같이 터미널에 명령어를 입력한다. 내 경우 homebrew 패키지 관리자를 이용하고 있어, 3 ~ 4 라인에서 brew 명령어를 통하여 python3을 재설치 하였다.

 

$ sudo rm -rf /Library/Frameworks/Python.framework
$ rm /usr/local/bin/python3*
$ brew uninstall python3
$ brew install python3
$ which python3
$ sudo python3 -m pip install --upgrade pip
$ sudo python3 -m pip install jupyter
$ which jupyter
$ jupyter notebook

원인 중에 하나는, macOS에 python3를 설치할 때, 공식 홈페이지에서 pkg 파일을 다운받아 설치한 경우 이런 오류가 발생할 수 있다고 한다.

 


[1] jupyter command not found on mac ox #89

 

 

반응형