일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 머신러닝
- OpenAI
- regression
- 분류
- 딥러닝
- Classification
- LG Aimers 4th
- 해커톤
- AI
- supervised learning
- PCA
- deep learning
- GPT-4
- ChatGPT
- 오블완
- Machine Learning
- 지도학습
- LLM
- LG Aimers
- 회귀
- gpt
- LG
- 티스토리챌린지
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
'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 |