使自己的jupyter能用tensorflow
anaconda prompt
conda list
查看自己是否安装了tensorflow
python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install tensorflow==2.10.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
import tensorflow as tf
print(tf.__version__)
使用清华的开源镜像安装较快。