配套视频连接: https://www.bilibili.com/video/BV1hE411t7RN?p=1
一、jupyter的基本使用
1. 特定环境使用jupyter
共有两种方法:
- 1.在环境中下载jupyter
- 2.在jupyter中导入环境
(1)在环境中下载jupyter
下载jupyter,输入
pip install jupyter
或者
conda install jupyter
下载好之后,运行jupyter,输入
jupyter notebook
注意:如果打开报错的话,应该是路径没有添加到环境中,把anaconda3\lib添加到环境变量的环境中!
(2)在Jupyter导入环境
pip install ipykernel #将环境添加到ipython的kernel中
python -m ipykernel install --user --name tensorflow --display-name tf
使用shift+回车运行代码块,并跳转到下一个代码块
二、jupyter自动补全提示设置
参考博客:https://blog.csdn.net/weixin_42182599/article/details/106191732
实现目标
实现方法
步骤一:cmd进入对应的python环境下
步骤二:执行下面代码块
pip install jupyter_contrib_nbextensions -i https://pypi.tuna.tsinghua.edu.cn/simple
jupyter contrib nbextension install --user
pip install jupyter_nbextensions_configurator -i https://pypi.tuna.tsinghua.edu.cn/simple
jupyter nbextensions_configurator enable --user
步骤三:打开jupyter,会发现多了一个东西
点击进入,勾上下面内容
完成!