Tensorflow安裝源

Yanwei Liu
1 min readJun 28, 2019

Tensorflow prebuilt binary for Windows

This repo contains all you need that work with tensorflow on windows.

  • Python 3.7 support
  • 64 bit Windows support
  • Legacy & low-end CPU (without AVX) support
  • If your CPU didn’t support AVX instructions, you will get
    ImportError: DLL load failed: A dynamic link library (DLL) initialization routine failed. (Win 10)
  • ImportError: DLL load failed with error code -1073741795 (Win 7) when using tensorflow official release 1.6.0 and up (pip install tensorflow)
  • You can use pip install [filename].whl which file download from sse2 folder instead of using official AVX binary.
  • Legacy GPU (compute capability 3.0 up) support
  • Because this repo’s binary only contain PTX code, it need to do a Just-In-Time compile to SASS to target your graphic card by your driver. It will take time for compiling when execute tensorflow first time.

--

--