Installing Python to learn Machine Learning and TensorFlow in Windows 10

Ngoc Minh Tran
1 min readApr 1, 2018

--

I am using Windows 10 (64 bits) and I want to install Python to learn Machine Learning (ML) and TensorFlow. I have implemented the following steps:

  • Download Anaconda
  • Install Anaconda at D:\soft\Anaconda_Python_Install
  • Set environment variables: right click on This PC icon (on Desktop) and select System Properties > Environment Variables. In the System variables, choose Path and click the Edit button. In the Edit environment variables window, click the New button and add D:\soft\Anaconda_Python_Install path (contains Python)and D:\soft\Anaconda_Python_Install\Scripts path (contains pip). Click OK to close Edit environment variables window and Environment Variables window.
  • Run Python: open Anaconda prompt and type: python (or python.exe)
  • Install TensorFlow: open Anaconda prompt and type: pip install tensorflow

Now, we begin to learn ML or TensorFlow.

--

--