Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- object detection
- pyTorch
- error
- dataset
- Windows 10
- raspberry pi
- shakeratos
- install
- colab
- Jupyter notebook
- CUDA
- face_recognition
- windows
- colaboratory
- FIle
- gpu memory
- python
- ubuntu
- dlib
- urllib
- Deep Learning
- python3
- linux
- Anaconda
- download
- 딥러닝
- keras
- TensorFlow
- ppc64le
- YouTube 8M
Archives
- Today
- Total
Shakerato
CUDA 9.2가 깔려있어도 CUDA 9.0을 참조해 에러나는경우, ImportError: libcublas.so.9.0 본문
Research
CUDA 9.2가 깔려있어도 CUDA 9.0을 참조해 에러나는경우, ImportError: libcublas.so.9.0
Shakeratto 2018. 9. 7. 19:02CUDA 9.2가 깔려있어도 CUDA 9.0을 참조하는 경우 다음과 같은 에러메세지가 발생한다.
(에러메세지)
ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory
특히 tensorflow 최신버전을 설치 후 import 할때 이런 경우가 발생한다.
이런경우 CUDA 9.0와 cudnn을 다시 다운받아 CUDA 9.2가 깔려있는 같은 시스템에 새롭게 설치하면 된다.
(리눅스에서는 다른 버전의 CUDA를 모두 설치할 수 있다.)
cuda9.0이 설치 되면 /usr/local/cuda 이 폴더가 자동으로 cuda9.2가 아닌 cuda9.0을 가르키게 된다.
* 만약 CUDA 9.2를 사용하고 싶으면 PATH를 잡아줘야 하는데,
> vi ~/.bashrc
.bashrc 파일의 마지막 라인에
export PATH=$PATH:/usr/local/cuda-9.0
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda-9.0/lib64
이렇게 되어 있거나, 위 내용이 없으면
export PATH=$PATH:/usr/local/cuda-9.2
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda-9.2/lib64
로 바꾸거나 추가하면 된다.
그리고 재부팅 하면 된다.
'Research' 카테고리의 다른 글
Counting files with extension in linux (0) | 2019.01.13 |
---|---|
pytorch "RuntimeError: ~ inplace operation" for CUDA (0) | 2019.01.05 |
Set timeout for urllib urlretrieve download files (0) | 2018.08.18 |
'no module named six.moves' in ubuntu (0) | 2018.08.17 |
pycocotools install on Windows 10, jupyter notebook (0) | 2018.08.09 |
Comments