(⼀)如何在Python3.8上安装TensorFlow(Mac版本)今天下载安装了Anaconda,需要在Anaconda上安装OpenCV和TensorFlow,但总会显⽰:
Specifications:
- tensorflow-gpu -> python[version='3.5.*|3.6.*|3.7.*|>=3.7,<3.8.0a0|>=3.6,<3.7.0a0|>=3.5,<3.6.0a0|>=2.7,<2.8.0a0']
literature怎么读Your python: python=3.8
因为python=3.8是最新版本,相应的TensorFlow 还没能及时更新,需要⾃⼰下载安装TensorFlow2
折腾了好久,⾛了很多弯路,最后使⽤了以下⽅法安装成功,希望能帮助到其他朋友:
⼀、检查电脑上⽬前的python和pip版本
  python3 --version
  pip3 --version
**注意:必须使⽤最新版本的 pip,才能安装 TensorFlow 2。升级pip:
pip install --upgrade pip
⼆、配置python3.8运⾏环境
js编程工具
jqueryapi的三个特点>矩阵的运算公式总结conda create -n env_name python=3.8
conda activate env_name
conda install pandas scikit-learn matplotlib notebook
pip3 install --user --upgrade tensorflow  #安装最新版本的tensorflow
三、测试是否安装成功
import tensorflow as tf
hello = tf.constant('hello,tf')
sess = tf.Session()
print(sess.run(hello))
python安装教程mac
此时可能出现报错:
AttributeError: module 'tensorflow' has no attribute 'Session'
不⽤担⼼,你的tensorflow已经安装成功,原因是你安装的tensorflow是2.0以上版本
可以将代码修改为:
import tensorflow as tf
with tfpat.v1.Session() as sess:
hello = tf.constant('Hello, tf!')
print(sess.run(hello))我要自学网编程
点击运⾏:
安装成功!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。