更换镜像源
这是我配置的清华大学开放源https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
安装TensorFlow
conda create -n tensorflow python=3.5.2
activate tensorflow
conda list
[global]
timeout = 6000
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
新建文件pip.ini pip文件夹也是我建的
pip install tensorflow==1.13.1
安装完成后查看
conda list
测试是否安装成功
python
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
sess.close()
安装jupyter
打开这个
如果打不开需要手动配置路径
G:AnacondaAnaconda3envs ensorflowScriptsjupyter-notebook.exe
这是我的以作参考
测试Spyder
打开Tools下的Preference进行配置
修改为TensorFlow下的python
这里会发现无法引入TensorFlow,因为这个Spyder是root环境下的,要在TensorFlow下安装Spyder
以后出现类似状况也可以如此解决
如机器学习库的安装包括numpy,matplotlib,pandas,tables,jupyter(已安装过)