A Installing Anaconda3
Select the appropriate version of the Anaconda installation, because the website directly download the speed is too slow, we choose to download from Tsinghua University open source software image station.
: https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
After entering the website, drop down to the bottom and select the Windows version to download.
installation process, direct click Next, installation location is best to choose the default can save a lot of trouble.
To this step in the picture, pay attention to all the check, do not need to tube red hint!
This anaconda will be installed, follow the steps below to proceed:
1. Run Start menu->anaconda3->anaconda Prompt. Check if Anaconda is installed successfully:
Input command: Conda--version
2. Detect which environments are currently installed: Conda info--envs
3. Check which versions of Python are currently available for installation: Conda search--full-name python
4. Install a version of Python, where I installed the 3.6.2 version: Conda Create--name TensorFlow python=3.6.3
Tip You need to install additional packages, enter Y.
5. Follow the prompts to activate the Tensorflow:activate TensorFlow
Previous occurrence (TensorFlow) indicates that the environment has been successfully activated
6. Ensure that the environment named TensorFlow has been successfully added: Conda info--envs
As you can see, the environment has been added.
8. Exit the current TensorFlow environment: Deactivate
Two Installing the TensorFlow CPU version
Because my computer does not support the GPU version, only the CPU version can be installed.
1. Install with command: Pip install TensorFlow
The first few times may be due to the speed of the problem, will download the failure, you can run a few times, when the Internet speed to meet the requirements of natural download installation success!
3. Confirm that the TensorFlow installation was successful:
After opening Anaconda prompt, enter: Python, and then enter: Import TensorFlow as TF. If no error is indicated, the TensorFlow has been successfully installed.
--------------------------------------------------------------------------------------------------------------- ----
Menciushometown
Links: https://www.jianshu.com/p/f50bbfcb3674
Source: Pinterest
Copyright belongs to the author. Commercial reprint please contact the author for authorization, non-commercial reprint please specify the source.
Win7 system with Anaconda installation TensorFlow (RPM)