lda2vec
lda2vec copied to clipboard
install tensorflow-gpu==1.5.0 Issue
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?
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.
I am lost why you are talking about tensorflow. This code is written in chainer. did I miss something?
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
I have changed tensorflow-gpu==1.5.0 to tensorflow==1.5.0 and now it works.
I have changed
tensorflow-gpu==1.5.0totensorflow==1.5.0and now it works.
I think these two codes, do the different thing....
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.