Tensorflow和Keras安装流程,jupyter无法使用keras解决方案

Tensorflow和Keras安装流程,jupyter无法使用keras解决方案

1.Base: anaconda https://www.anaconda.com/download

2.安装python=3.8,Tensorflow=2.13.0,Keras=2.13.1

--创建conda环境-在Anaconda Prompt中输入命令, conda create -n tensorflow python=3.8

--激活环境 activate tensorflow

--安装Tensorflow pip install tensorflow==2.13.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

--安装Keras pip install keras==2.13.1 -i https://pypi.tuna.tsinghua.edu.cn/simple

--在tensorflow环境中,进入python,输入import tensorflow 和 import keras测试

3.打开jupyter notebook,运行import keras会报错:'No module name tensorflow' ,jupyter notebook内核没有切换环境。

在Anaconda Prompt中操作:

--安装ipython conda install ipython

--安装jupyter conda install jupyter

--查看可用kernel:jupyter kernelspec list

--在tensorflow虚拟环境下,安装ipykernel: conda install ipykernel

python -m ipykernel install --name tensorflow

运行jupyter notebook:jupyter notebook

Success!

tensorflow、python版本对应关系 https://tensorflow.google.cn/install/source?hl=en#cpu

相关推荐
神仙别闹2 小时前
基于tensorflow和flask的本地图片库web图片搜索引擎
前端·flask·tensorflow
极客代码8 小时前
【Python TensorFlow】入门到精通
开发语言·人工智能·python·深度学习·tensorflow
义小深8 小时前
TensorFlow|咖啡豆识别
人工智能·python·tensorflow
萧鼎1 天前
Python中的TensorFlow与Keras:深度学习模型构建与训练
python·深度学习·tensorflow
Biomamba生信基地2 天前
jupyter如何切换内核
ide·python·jupyter
豆本-豆豆奶2 天前
给初学者的 Jupyter Notebook 教程
开发语言·python·jupyter·安装教程·notebook
勤奋的大熊猫2 天前
Jupyter lab 打开时默认使用 Notebook 而不是浏览器
ide·python·jupyter
三世2 天前
Jupyter notebook 添加目录插件
jupyter·插件·目录·notebook
宋一诺332 天前
机器学习—TensorFlow
人工智能·机器学习·tensorflow
weixin_466202783 天前
第30周:彩色图片分类(Tensorflow实战第二周)
分类·数据挖掘·tensorflow