win10+anaconda+tensorflow+pycharm

1.从清华镜像下载安装anaconda相应版本:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

安装anaconda

(可以自定义安装路径)

2.Anaconda Navigator---environment



安装openCV一样的步骤

(清华镜像路径安装:http://blog.csdn.net/yideqianfenzhiyi/article/details/79272709

3.安装pycharm:PyCharm官网可以下载安装包;

破解码网站:http://idea.lanyus.com/


专业版破解方法附链接:http://blog.csdn.net/px41834/article/details/79256024

4.配置pycharm:



5.新建项目,调试验证:

import tensorflow as tf

# Create TensorFlow object called hello_constant
hello_constant = tf.constant('Hello World!')

with tf.Session() as sess:
    # Run the tf.constant operation in the session
    output = sess.run(hello_constant)
    print(output)

输出:b'Hello World!' 

成功!



安装tensorflow-GPU:https://blog.csdn.net/xuefengyang666/article/details/79422012

猜你喜欢

转载自blog.csdn.net/weixin_40699340/article/details/79557802