Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- pytorch
- ml
- Anaconda
- MRI
- NRMSE
- kernel
- ssl
- coursera
- error
- 동차좌표계
- AWS
- EC2
- https
- Emoji
- procedure
- CT
- object detection
- 평가지표
- pm2
- FSL
- git
- Homogeneous Coordinates
- Cost Function
- x-ray
- relaxation time
- nodejs
- Map-reduce
- MySQL
- Dual energy X-ray
- ubuntu
Archives
- Today
- Total
Pay it Forward
[Anaconda] Ubuntu에 Anaconda 설치하기 본문
728x90
Ubuntu에 Anaconda를 설치하면 Jupyter notebook / Jupyter lab도 설치가 되므로
Anaconda를 설치함으로 모두 사용할 수 있다.
[설치 방법]
1. Anaconda 공식 홈페이지(https://www.anaconda.com/products/individual)에 들어가서 Linux 의 64-Bit (x86) Installer의 link를 복사한다.
2. 터미널을 키고 home으로 이동한 후, 다음과 같이 명령어를 입력한다.
cd ~ #home directory로 이동
wget [복사한 link] #Anaconda 설치
e.g) wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh
설치하고나면 home에 다음과 같이 .sh file이 다운받아졌음을 확인할 수 있다.
3. 다음과 같이 명령어를 입력해 설치를 시작한다.
bash [.sh file name]
e.g) bash Anaconda3-2020.11-Linux-x86_64.sh
설치를 하면서 enter와 yes or no를 물을때마다 enter 및 yes를 입력해주면 설치가 완료된다.
4. 다음과 같이 명령어를 입력하여 변동사항을 바로 적용시킨다.
(원래는 logout - login 해야지 적용되는데 아래 명령어로 바로 적용가능하다.)
source ~/.bashrc
5. 다음 명령어로 conda가 잘 설치되었는지 확인한다.
conda --version
728x90
'Tool > e.t.c' 카테고리의 다른 글
[WSL, FSL] window에 WSL(ubuntu)사용하여 FSL 설치하기 (2) | 2021.10.23 |
---|---|
[Linux/ubuntu] linux/ubuntu 명령어 모음 (0) | 2021.05.18 |
[Anaconda] Jupyter 가상환경 Kernel 생성/삭제하기 (0) | 2021.01.25 |
[Anaconda] CommandNotFoundError: Your shell has not been properly configured to use 'conda activate' 에러 해결 (0) | 2021.01.24 |
[Anaconda] Conda 명령어, 기본 개념 모음 (0) | 2020.11.26 |
Comments