🎈문제 상황
파이썬 강의를 듣다가 pandas를 깔아야하기에 터미널에서
pip install pandas
를 했는데
zsh: command not found: pip
가 떠버렸다.... 문제를 해결하기 위해서 구글링을 했다
https://velog.io/@lkr1111/zsh-command-not-found-pip (참고 사이트)
source ~/.zshrc
라는 명령어를 쳐보니까
command not found: Export 라고 터미널에 떳다 이걸 해결하려 해봤지만 더는 못 찾고 다시
zsh: command not found: pip
위의 에러에 집중하여 구글링해본 결과
pip3 install --upgrade pip
면 간단하게 해결할 수 있다는걸 발견!
하지만 아래와 같은 오류가 발생하게 된다...
[notice] A new release of pip is available: 24.2 -> 24.3.1
[notice] To update, run: python3.13 -m pip install --upgrade pip
error: externally-managed-environment
× This environment is externally managed
╰─> To install Python packages system-wide, try brew install
xyz, where xyz is the package you are trying to
install.
If you wish to install a Python library that isn't in Homebrew,
use a virtual environment:
python3 -m venv path/to/venv
source path/to/venv/bin/activate
python3 -m pip install xyz
If you wish to install a Python application that isn't in Homebrew,
it may be easiest to use 'pipx install xyz', which will manage a
virtual environment for you. You can install pipx with
brew install pipx
You may restore the old behavior of pip by passing
the '--break-system-packages' flag to pip, or by adding
'break-system-packages = true' to your pip.conf file. The latter
will permanently disable this error.
If you disable this error, we STRONGLY recommend that you additionally
pass the '--user' flag to pip, or set 'user = true' in your pip.conf
file. Failure to do this can result in a broken Homebrew installation.
Read more about this behavior here: <https://peps.python.org/pep-0668/>
note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages.
hint: See PEP 668 for the detailed specification.
열심히 구글링하고 또 구글링해서
🎈해결 방법
python3 -m pip config set global.break-system-packages true
패키지 설치 권한을 풀어 드디어 판다스를 설치할 수 있었다 😭😭😭
🎈느낀점
맥OS는 친형 맥미니를 사용하면서 처음 배워가고 있다 진짜 모르는게 너무 많다는걸 계속 체감한다 코딩을 6시간 정도 했는데 강의 들은건 2시간 , 오류 잡는데 (맥OS 특성상의 오류 )는 진짜... 맥 고수들만 쉽게 잡고 나같이 윈도우만 사용한 사람들은 힘들겠다...
(전역한다면 맥OS 공부 더 열심히 해야겠다!@!)