250x250
Notice
Recent Posts
Recent Comments
«   2024/10   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Archives
Today
Total
관리 메뉴

SYDev

[Spark The Definitive Guide] terminal pip3 설치 에러 본문

KHUDA 5th/Data Engineering

[Spark The Definitive Guide] terminal pip3 설치 에러

시데브 2024. 3. 8. 17:33
728x90

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 non-brew-packaged Python package,
    create a virtual environment using python3 -m venv path/to/venv.
    Then use path/to/venv/bin/python and path/to/venv/bin/pip.
    
    If you wish to install a non-brew packaged Python application,
    it may be easiest to use pipx install xyz, which will manage a
    virtual environment for you. Make sure you have pipx installed.

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.
sangyeong-park@bagsang-yeong-ui-MacBookPro ~ % python3 -m pip config set global.break-system-packages true

 

해결법 -> python3 -m pip config set global.break-system-packages true

 

출처: https://velog.io/@mystic/%EB%A7%A5%EB%B6%81-Homebrew-python%EC%84%A4%EC%B9%98%EC%8B%9C-pip-%EB%AC%B8%EC%A0%9C

 

맥북 Homebrew python설치시 pip 문제

맥북에서는 프로그램들을 설치할때 윈도우처럼 직접 설치파일을 다운받는 방식보다는 Homebrew를 사용하여서 다운받는 방식을 많이 사용합니다.이번엔 오랜만에 python을 사용하여서 프로젝트 할

velog.io

 

728x90