작성
·
18K
1
맥북에서 공부하고 있습니다. pip install beautifulsoup4를 python 터미널에서 입력했을 때 bash: pip: command not found라고 뜨며 설치가 되지 않습니다. pip 부분이 화면처럼 노란색으로 변하지 않는데 뭔가 먼저 설치해야하는 것이 있나요?
답변 2
10
답변 감사합니다!pip3 install beautifulsoup4를 입력했을 때 잘 설치 되었습니다. 또
WARNING: You are using pip version 20.1.1; however, version 20.2.3 is available.
You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8 -m pip install --upgrade pip' command.
라는 메세지를 출력 하기에 pip3 install --upgrade pip 로 업그레이드 진행 후에는 pip install beautifulsoup4로 설치 가능했습니다.
혹시 같은 문제가 생기는 분들이 계실까봐 남겨둡니다.
선생님은 천재이십니다.