본문 바로가기

반응형

Installation

(15)
[Ubuntu] Server Desktop(GUI) Installation # sudo apt-get install xauth # sudo apt-get install xorg # sudo apt-get install openbox # sudo apt-get install ubuntu-desktop https://help.ubuntu.com/community/ServerGUI ServerGUI - Community Help Wiki Introduction This guide discusses the use of a Graphical User Interface (GUI) and/or desktop environment on Ubuntu servers. Conventional wisdom states that in most cases it is better to not instal..
[Ubuntu] DB Browser for SQLite Installation # sudo add-apt-repository -y ppa:linuxgndu/sqlitebrowser # sudo apt-get update # sudo apt-get install sqlitebrowser Downloads - DB Browser for SQLite (sqlitebrowser.org) Downloads - DB Browser for SQLite (Please consider sponsoring us on Patreon 😄) Windows Our latest release (3.12.2) for Windows: Free code signing provided by SignPath.io, certificate by SignPath Foundation. Windows PortableApp N..
[Python] TensorFlow(2.14) Installation (Ubuntu, Nvidia GPU, + PyTorch) 1. 버전 조합 개요Ubuntu: 22.04 LTSPython: 3.10Clang: 16Nvidia Driver: 설치할 CUDA Toolkit 버전의 요구사항 충족 되는 버전 이상이면 무방할듯..(그냥 최신 버전 설치함)CUDA Toolkit: 11.8cuDNN: 8.7.0.84TensorRT: 8.6.1.6TensorFlow: 2.14  2. Download CUDA Toolkit: https://developer.nvidia.com/cuda-11-8-0-download-archive?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=22.04&target_type=runfile_local CUDA Toolkit 11.8 Do..
[Ubuntu] Clang Installation # wget https://apt.llvm.org/llvm.sh # chmod +x llvm.sh # sudo ./llvm.sh 16 all # sudo vi /etc/profile.d/llvm.sh export LLVM_HOME=/lib/llvm-16 export PATH=$PATH:$LLVM_HOME/bin 저장 # source /etc/profile.d/llvm.sh 참고: https://apt.llvm.org/ LLVM Debian/Ubuntu packages The goal is to provide Debian and Ubuntu nightly packages ready to be installed with minimal impact on the distribution. Packages are ..
[Python] TensorFlow(2.13) Installation (Ubuntu, Nvidia GPU, + PyTorch) 1. 버전 조합 개요 Ubuntu: 22.04 LTS Python: 3.10 Clang: 16 Nvidia Driver: 설치할 CUDA Toolkit 버전의 요구사항 충족 되는 버전 이상이면 무방할듯..(그냥 최신 버전 설치함) CUDA Toolkit: 11.8 cuDNN: 8.6.0.163 TensorRT: 8.5.3.1 TensorFlow: 2.13 2. Download CUDA Toolkit: https://developer.nvidia.com/cuda-11-8-0-download-archive?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=22.04&target_type=runfile_local CUDA Toolkit..
[Ubuntu] Intel VGA Driver Installation https://www.intel.co.kr/content/www/kr/ko/download/747008/intel-arc-graphics-driver-ubuntu.html 인텔® 아크™ 그래픽 드라이버 - Ubuntu* 이 릴리스는 인텔® Arc™ A-시리즈 그래픽에서 Ubuntu* 22.04에 대한 패키지 업데이트를 제공합니다. www.intel.co.kr https://dgpu-docs.intel.com/installation-guides/index.html Installation Guides — Intel® software for general purpose GPU capabilities documentation dgpu-docs.intel.com
[Python] TensorFlow(2.11) Installation (Ubuntu, Nvidia GPU, + PyTorch) 1. 버전 조합 개요 Ubuntu: 20.04 LTS Python: 3.8 (Ubuntu 22.04 LTS는 기본 버전이 3.10이며, 3.8을 설치하려면 deadsnake ppa 추가 등 살짝 번거로움.. 라이브러리 요구사항을 맞추려면 TensorRT 7.2.3.4를 설치해야 하는데, 3.8까지만 지원함..) Nvidia Driver: 설치할 CUDA Toolkit 버전의 요구사항 충족 되는 버전 이상이면 무방할듯..(그냥 최신 버전 설치함) CUDA Toolkit: 11.1.1 (https://www.tensorflow.org/install/source?hl=ko#gpu 에서 11.2로 표기된거 보고 설치 해본 결과, 라이브러리 버전 오류 확인됨. TensorRT 7 버전대 요구사항에 영향 받는듯....
[Python] 필수 Library/Tools 설치(user mode) # sudo apt install python3-testresources # sudo apt install libxcb-xinerama0 # python3 -m pip install --user --upgrade pip setuptools wheel packaging requests opt_einsum # python3 -m pip install --user --upgrade keras_preprocessing --no-deps # python3 -m pip install --user --upgrade numpy scipy matplotlib ipython h5py jupyter spyder pandas sympy nose # python3 -m pip install --user --upgrade sci..

반응형