본문 바로가기

Anything else

[ssh에서 CUDA 딥러닝 환경 구축 하는 방법 - 시행착오 기록]

반응형

References: https://csm-kr.tistory.com/26

 

[Ubuntu] 딥러닝 서버 만들기 - ubuntu 20.04.3 LTS server에 conda / nvidia-driver-470 / CUDA11.4 설치하기

안녕하세요 pulluper 입니다 😃😃😃 오랜만에 ubuntu server에 cuda 설치를 다시 해보았는데요. 이번에는 서버에 설치 하는 방법에 대하여 알아보겠습니다. 🕋🕋 만약 여러가지 version으로 cuda를 이

csm-kr.tistory.com

+) 정말 감사합니다.


1. sudo apt-get update

 

2. wget https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Linux-x86_64.sh

 

3. bash Anaconda3-2023.09-0-Linux-x86_64.sh

 

4. Conda 설치 -> Enter, yes 누름

 

5. nano ~/.bashrc

- export PATH="$HOME/anaconda3/bin:$PATH"

---> 여기서 anaconda3는 conda 설치할 때 설치되는 기본 폴더 이름.

---> yes를 한번 더 입력하고, 어떤 창이 나오는데 그곳에서 실수로 'yes' 입력해서 나는 경로가 "$HOME/yes/bin:$PATH" 가 되었다..ㅠ

- source ~/.bashrc

- conda -V로 버전 확인


1. ubuntu-drivers devices

-> sudo apt install -y ubuntu-drivers-common

 

- Unable locate error 발생한 경우

--> solution: https://seong6496.tistory.com/400

--> vi 파일 다루는 법: https://jitolit.tistory.com/27

--> DNS 추가: https://hs5555.tistory.com/44

--> public key error: https://miiingo.tistory.com/363


반응형