ubuntu16.04에 dsl-compile 설치하기
2020. 4. 17. 20:38ㆍ꿀팁 분석 환경 설정/Linux 관련 팁
728x90
kubectl에서 dsl-compile 설치하기
apt-get update; apt-get install -y wget bzip2
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
which conda
(못찾을 경우 아래처럼 환경 잡아주기)
export PATH=/home/lsr/miniconda3/bin/:$PATH
(위의 주소(/home/lsr/miniconda3/)은 bash Miniconda3-latest-Linux-x86_64.sh 에서 설정한 것을 가져오면 됨)
conda create --name mlpipeline python=3.6
## conda init 에러 날시 안나면 아래 source 부분 패스하고 conda activate
source ~/miniconda3/etc/profile.d/conda.sh
conda activate mlpipeline
pip install kfp --upgrade
export PATH=$PATH:~/.local/bin
which dsl-compile
출처
(https://www.kubeflow.org/docs/pipelines/sdk/install-sdk/)
728x90
'꿀팁 분석 환경 설정 > Linux 관련 팁' 카테고리의 다른 글
Kubernetes 설치 튜토리얼 주소 (0) | 2020.04.17 |
---|---|
ubuntu 16.04에서 Minikube 및 Kubeflow 설치 (0) | 2020.04.17 |
ubuntu 16.04 GPG error 해결 방법 공유 (0) | 2020.04.17 |
리눅스 에러 Could not get lock /var/lib/dpkg/lock-frontend (0) | 2020.04.17 |
리눅시 시스템 시간 변경하는 법 (0) | 2019.12.10 |