1.创建虚拟环境
conda create -n Tensor python=3
2.激活虚拟环境
activate Tensor
3.配置pip使用清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
4.安装Tensoflow
pip install tensorflow
5.运行测试代码
python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
打开spyder导入tensoflow出错 No module named 'tensorflow'
打开anaconda navigator,选择environment并加载tensorflow环境,然后选择not installed,并在搜索框里输入spyder(这里我已经加载过spyder模块,所以下面并没有出现spyder),选中下方搜索到的spyder并单击右下角的apply,就可以在spyder里加载tensorflow。
此步安装时若出错 Multiple Errors Encountered.
在Anaconda Prompt中输入(以删除缓存的包)
conda clean --packages --tarballs
遇到都选y