tflearn icon indicating copy to clipboard operation
tflearn copied to clipboard

which Tf learn repo for windows (win7x64)?

Open Robomate opened this issue 7 years ago • 7 comments

Is there any repo which I can use to install it on a windows machine?

Robomate avatar Dec 28 '16 10:12 Robomate

Nop, right now. TFlearn use the Curses library(don't have support for windows).

edtruji avatar Dec 31 '16 17:12 edtruji

I was able to run tflearn with GPU support on windows 10 - 64 bit. Here are the steps to install.

  1. Install Python 3.5 (64 bit) from Anaconda. https://repo.continuum.io/archive/Anaconda3-4.2.0-Windows-x86_64.exe (Distribution from python.org does not work due to missing hdf5 module)
  2. Install CUDA8 from nvidia site https://developer.nvidia.com/cuda-downloads
  3. Install tensorflow with GPU support using command pip install tensorflow-gpu
  4. Then go to http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses download curses‑2.2‑cp35‑none‑win_amd64.whl file and run pip install curses‑2.2‑cp35‑none‑win_amd64.whl command.

After this I was able to run nlp samples with GPU on windows.

Some samples do not work in python 3.5 (for example nlp cities names) so you have to fix the code, before you can run them.

xplicit avatar Jan 04 '17 09:01 xplicit

To follow up @xplicit, the final step is pip install tflearn. Worked for me on Windows 10 64 bit.

twocs avatar Mar 24 '17 23:03 twocs

Worked for me, too, using the non-gpu version.

carstenbauer avatar May 05 '17 12:05 carstenbauer

Thanks a ton @xplicit 💯

0xDaksh avatar May 29 '17 14:05 0xDaksh

Hi @xplicit , curses‑2.2‑cp35‑none‑win_amd64.whl is not available in this link (http://www.lfd.uci.edu/~gohlke/pythonlibs/#curses). I checked for other sources but failed to find this exact file. Can you please help me out with this? If possible, please upload that file here....

imarvinds avatar Aug 09 '18 07:08 imarvinds

this works for me: pip install git+https://github.com/tflearn/tflearn.git

hktxt avatar Sep 21 '18 01:09 hktxt