일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- colaboratory
- Windows 10
- download
- linux
- dataset
- shakeratos
- 딥러닝
- face_recognition
- urllib
- TensorFlow
- keras
- FIle
- ubuntu
- Deep Learning
- YouTube 8M
- pyTorch
- dlib
- Jupyter notebook
- raspberry pi
- colab
- ppc64le
- python3
- python
- error
- Anaconda
- object detection
- gpu memory
- install
- windows
- CUDA
- Today
- Total
Shakerato
dlib(cuda enabled), face_recognition ubuntu 16.04에 설치하기 본문
1. CUDA 설치
(설치전 Nouveau kernel driver should be disabled: https://askubuntu.com/questions/841876/how-to-disable-nouveau-kernel-driver)
2. cuDNN 설치
Download cuDNN*.deb on https://developer.nvidia.com/cudnn
cuda버전에 맞는 cudnn 중 다음 두개를 다운받아야함)
cuDNN v7.2.1 Runtime Library for Ubuntu16.04 (Deb)
cuDNN v7.2.1 Developer Library for Ubuntu16.04 (Deb)
> dpkg -i cuDNN*.deb
3. Anaconda 설치
http://snowdeer.github.io/linux/2018/01/22/ubuntu-16p04-how-to-install-anaconda/
> export PATH=~/anaconda3/bin:"$PATH"
> conda create -n <envname> python=3.6 anaconda
5. source activate <envname>
6. dlib 설치
https://www.learnopencv.com/install-dlib-on-ubuntu/
(마지막에 python에 dlib를 설치해는걸 잊으면 안됨: python setup.py install)
* 중간에 CUDA ENABLED 메세지가 있어야 GPU를 사용할 수 있음
** apt-get install -f (dependency 에러 뜨는 경우 -f 를 붙이면 에러 없이 설치 가능)
7. face_recognition 설치
(face_recognition github: https://github.com/ageitgey/face_recognition)
> apt-get install git
> git clone https://github.com/ageitgey/face_recognition.git
> cd face_recognition
> vi requirements.txt
-> Have to delete the line for installing dlib
> vi requirements_dev.txt
-> Have to delete the line for installing dlib
> python setup.py install
'Research' 카테고리의 다른 글
'no module named six.moves' in ubuntu (0) | 2018.08.17 |
---|---|
pycocotools install on Windows 10, jupyter notebook (0) | 2018.08.09 |
install curl to download YouTube-8M on windows 10 (0) | 2018.08.06 |
Visual Studio Community 2015 download (0) | 2018.08.02 |
python opencv 'cv2.cv2 has no attribute' error solution (0) | 2018.07.31 |