Jupyter notebook改变默认的的工作目录
- 找到配置文件:在Anaconda Prompt终端中输入
1
jupyter notebook --generate-config
在我的Mac上,这一路径为“/Users/light/.jupyter/jupyter_notebook_config.py”
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