• Jupyter notebook选择不同虚拟环境中module
  • Jupyter notebook改变工作路径
  • Jupyter notebook中文化

Jupyter notebook选择不同虚拟环境中module

1
2
3
4
conda activate $Your-env-name #激活对应虚拟环境
conda install ipykernel #在此环境中安装ipykernel module
ipython kernel install --user --name= $Your-like-name
#为此虚拟环境添加对应的kernel

打开jupyter notebook,在界面选择对应虚拟环境的kernel,即可使用其中的模块

Jupyter kernel管理命令

1
2
3
4
#查看当前已有的 jupyter kernel
juputer kernelspec list
#删除不再需要的 kernel
jupyter kernelspec uninstall $kernel_name

Jupyter notebook改变工作路径

生成配置文件

1
2
jupyter notebook --generate-config
#路径应为$user/.jupyter/`jupyter_notebook_config.py`

执行命令后会显示生成的路径,前往该路径,并打开jupyter_notebook_config.py

1
2
3
#c.NotebookApp.notebook_dir = ''
#将此处修改为
c.NotebookApp.notebook_dir = '你希望的路径'

Jupyter notebook中文化

使用中文终端打开jupyter notebook,界面会自动变为中文

例如使用windows端的Git Bash

您的喜欢是作者写作最大的动力!❤️
  • PayPal
  • AliPay
  • WeChatPay
  • QQPay
Donate

 评论


Copyright 2019-2021 Azure's BLOG 正在载入...