George Liu
George Liu

Reputation: 3583

TensorFlow on Windows: Error when installing with Anaconda 3

Now TensorFlow is finally released on Windows, I have been trying to install it for the last 2 days, still no success. Need some help please.

After installing Anaconda 3, I followed the instructions here. But was not able to proceed further beyond activating the environment...

Upvotes: 2

Views: 1378

Answers (1)

George Liu
George Liu

Reputation: 3583

Just sorted things out...what a journey!! The solution is below:

So basically, we need to follow the process here. Also, you may get an error message like this:

Cannot remove entries from nonexistent file c:\users\george.liu\appdata\local\co
ntinuum\anaconda3\lib\site-packages\easy-install.pth

So, you just need to do this instead in Anaconda Prompt:

pip install --upgrade --ignore-installed https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0rc0-cp35-cp35m-win_amd64.whl

This is due to a known bug as explained here.

Then you're all set. Enjoy!!

Upvotes: 8

Related Questions