KHUDA 5th/Data Engineering
[Spark The Definitive Guide] terminal pip3 설치 에러
시데브
2024. 3. 8. 17:33
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
맥북 Homebrew python설치시 pip 문제
맥북에서는 프로그램들을 설치할때 윈도우처럼 직접 설치파일을 다운받는 방식보다는 Homebrew를 사용하여서 다운받는 방식을 많이 사용합니다.이번엔 오랜만에 python을 사용하여서 프로젝트 할
velog.io
728x90
반응형