일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- supervised learning
- AI
- regression
- LG Aimers 4th
- Classification
- 티스토리챌린지
- 회귀
- 지도학습
- 오블완
- 분류
- Machine Learning
- deep learning
- 머신러닝
- LG Aimers
- 딥러닝
- GPT-4
- OpenAI
- LLM
- PCA
- LG
- 해커톤
- gpt
- ChatGPT
Archives
- Today
- Total
SYDev
[Spark The Definitive Guide] terminal pip3 설치 에러 본문
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
반응형
'KHUDA 5th > Data Engineering' 카테고리의 다른 글
[Spark The Definitive Guide] Part 6. 고급 분석과 머신러닝 (2) | 2024.04.03 |
---|---|
[Khuda 5th] Data Engineering 2주차 세션 (0) | 2024.03.25 |
[Spark The Definitive Guide] Part 2-2. 구조적 API: DataFrame, SQL, Dataset (1) | 2024.03.21 |
[Spark The Definitive Guide] Part 2-1. 구조적 API: DataFrame, SQL, Dataset (3) | 2024.03.18 |
[Spark The Definitive Guide] Part 1. 빅데이터와 스파크 간단히 살펴보기 (0) | 2024.03.07 |