How to get Python TensorFlow working in Windows with PyCharm: UPDATE: issue with pip - see below.
======================================================
Anaconda: https://www.continuum.io/downloads
"pip install" in pycharm on terminal:
import pip
pip.main(['install', 'tensorflow'])
****
UPDATE: There are some issues with pip3 (https://github.com/pypa/pip/issues/5240), a work around is to use:
from pip._internal import main
main(['install', 'tensorflow-gpu'])
****
UPDATE:TensorFlow Download and Setup (to test installation): https://www.tensorflow.org/versions/r0.10/get_started/os_setup (OUTDATED)
Instead, I recommend trying the example code here: https://www.tensorflow.org/tutorials/quickstart/beginner
Download
0 formats
No download links available.
Python: Tensorflow on Windows 10 in PyCharm | NatokHD