lda2vec icon indicating copy to clipboard operation
lda2vec copied to clipboard

install tensorflow-gpu==1.5.0 Issue

Open jkimtokyo opened this issue 7 years ago • 6 comments

hi, want to try lda2vec, but could not install tensorflow-gpu==1.5.0.

Could not find a version that satisfies the requirement tensorflow-gpu==1.5.0 (from versions: 0.12.1, 1.0.0, 1.0.1, 1.1.0rc0, 1.1.0rc1, 1.1.0rc2, 1.1.0) No matching distribution found for tensorflow-gpu==1.5.0

I have macbook, any hint for this?

jkimtokyo avatar Jun 05 '18 10:06 jkimtokyo

I have the same problem on MacOS when I'm trying to install it with pip. I found out on the Tensorflow website that the last available version for tensorflow_gpu is the 1.1.0 when for other OS it's the 1.8.0. Is there any way to bypass the requirements?

I'm trying to install it directly from this repo. I'll let you know if I manage to make it works on MasOS.

ijeantet avatar Jun 08 '18 09:06 ijeantet

I am lost why you are talking about tensorflow. This code is written in chainer. did I miss something?

bhomass avatar Sep 07 '18 00:09 bhomass

Not sure if relevant for this repo or gpu, but there's no tensorflow 1.5.0 wheel for python 3.7 so if you're using latest version of conda while pip-installing you won't find it. Try in a new env

conda create -n myenv  python=3.6
source activate myenv
pip install tensorflow==1.5.0 

ragulpr avatar Oct 02 '18 12:10 ragulpr

I have changed tensorflow-gpu==1.5.0 to tensorflow==1.5.0 and now it works.

andreqwert avatar Apr 08 '19 19:04 andreqwert

I have changed tensorflow-gpu==1.5.0 to tensorflow==1.5.0 and now it works.

I think these two codes, do the different thing....

begonia666 avatar Jun 26 '19 00:06 begonia666

Not sure if relevant for this repo or gpu, but there's no tensorflow 1.5.0 wheel for python 3.7 so if you're using latest version of conda while pip-installing you won't find it. Try in a new env

conda create -n myenv  python=3.6
source activate myenv
pip install tensorflow==1.5.0 

This works for me.

XueqiYang avatar Feb 19 '20 18:02 XueqiYang