When I tried to use TensorFlow on windows10, I got stuck with some notes.
Python version is different
On 2017/04/29, the windows version of TensorFlow only supports Python 3.5.
In my case, 3.6 was included, so I uninstalled it.
Addendum
It seems good to use Anaconda's virtual environment
https://conda.io/docs/user-guide/tasks/manage-environments.html
An error occurs and the installation stops When I executed the following installation command pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.0.0-cp35-cp35m-win_amd64.whl Cannot remove entries from nonexistent file... Etc. was displayed and it failed. http://yaju3d.hatenablog.jp/entry/2016/12/06/023820 According to it seems to be a dependency package issue, pip install --upgrade -I setuptools Was executed.
Successful installation import tensorflow I confirmed that it can be imported with.
Reference site Official https://www.tensorflow.org/install/install_windows
Recommended Posts