Jupyter notebook

Jupyter notebook改变默认的的工作目录

  1. 找到配置文件:在Anaconda Prompt终端中输入
    1
    jupyter notebook --generate-config

在我的Mac上,这一路径为“/Users/light/.jupyter/jupyter_notebook_config.py”

  1. 修改配置文件:找到 “c.NotebookApp.notebook_dir”,去掉注释,写入新的默认路径

Mac上启动 jupyter notebook

在 terminal 中输入

1
jupyter notebook

或者使用root用户启动

1
jupyter notebook --allow-root

Mac上自定义命令

修改 $HOME 目录下的.bash_profile文件,加入:

1
alias xx="xxxx"

然后重新加载.bash_profile文件

1
source .bash_profile