Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dependencies missing in current linux-64 channels when trying to install tensorflow-gpu with conda command

Hi I tried conda install tensorflow-gpu in my terminal and I get this

Error:  Dependencies missing in current linux-64 channels: 
 - tensorflow -> numpy >=1.11 -> blas * mkl
- tensorflow -> numpy 1.11* -> blas * openblas
 - tensorflow -> tensorflow-tensorboard -> numpy >=1.11 -> blas * 
openblas
 - tensorflow -> numpy 1.12* -> blas * openblas
 - tensorflow -> tensorflow-base ==1.3.0 -> numpy >=1.11 -> blas * mkl
- tensorflow -> tensorflow-base ==1.3.0 -> numpy >=1.11 -> blas * openblas
   - tensorflow -> tensorflow-tensorboard -> numpy >=1.11 -> blas * mkl
 - tensorflow -> numpy 1.12* -> blas * mkl
 - tensorflow -> numpy 1.11* -> blas * mkl
  - tensorflow -> numpy >=1.11 -> blas * openblas

I also installed openblas after but still same error. What is the issue?

like image 289
ebramos Avatar asked Sep 03 '18 14:09

ebramos


1 Answers

As @pic0 has suggested, after doing

conda update conda

I were able to install all needed packages.

If you have installed Anaconda on the default folder (for me is /home/user/anaconda), you should not need to use sudo.

like image 116
fernandezr Avatar answered Oct 25 '22 15:10

fernandezr