我想用Ubuntu 16.10中的Jupyter自动加载命令行:
%matplotlib inline
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
使用Ubuntu,我们通常可以使用.vimrc
、.bashrc
等配置文件来自动化一些命令行。我知道我们可以用jupyter notebook --generate-config
创建配置文件jupyter_notebook_config.py
。我们如何在.py
文件中用python实现它呢?
谢谢!
发布于 2017-04-10 08:31:49
您不能在常规终端中使用内联图形,因为常规终端没有图形功能。但是,如果您愿意使用另一种控制台,Jupyter Qtconsole可能更适合您。
编辑:好的,我已经看过了,你需要看看this,特别是关于在启动时运行文件/代码行的部分。(如c.InteractiveShellApp.exec_lines
或c.InteractiveShellApp.exec_files
https://stackoverflow.com/questions/43312258
复制