728x90
반응형
apple m1에서는 pip install lightGBM을 수행하면 설치가 안 된다.
그래서 기반이 되는 프로그램을 따로 설치해줘야 한다.
1. Xcode Command Line Tools 설치
xcode-select --install
2. brew 설치
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
3. miniforge 설치
brew install miniforge
4. cmake, libomp 설치
brew install cmake libomp
5. conda 가상환경 생성
conda create -n test
conda activate test
conda install numpy scipy scikit-learn
6. LightGBM 설치
conda install lightgbm
728x90
반응형
'~2023' 카테고리의 다른 글
[Terminal] nvidia-smi 1초마다 모니터링하기 (0) | 2023.11.15 |
---|---|
[anaconda] 가상환경의 python 버전 변경 (0) | 2023.10.20 |
[VSCode] 한글만 하이라이트 되는 문제 해결하기 (2) | 2023.10.09 |
정규분포(Normal Distribution)와 Python으로 데이터 시각화하기 (0) | 2023.10.04 |
[Jupyter] 에러 loading renderer 'jupyter-notebook-renderer' 해결 (0) | 2023.08.07 |