%连接到ipython笔记本内核时粘贴魔术

时间:2015-07-10 10:20:14

标签: ipython ipython-notebook ipython-magic

我正在使用ipython笔记本进行编码,但有时我喜欢连接到终端上的内核来进行一些调试。要启动连接到我内核的交互式终端,我会这样做:

            Intent intent = new Intent(android.content.Intent.ACTION_SEND);
            intent.setAction(Intent.ACTION_VIEW);
            intent.setDataAndType(Uri.parse("file://" + a), "image/*");
            startActivity(intent);

            //a is path to image
            a = "/storage/primery/lagacy/kids/123.png"

当我这样做时,我无法访问%paste magic,因为它未加载到笔记本配置文件中。在这种情况下如何加载%paste magic?

感谢。

0 个答案:

没有答案