如何设置SublimeREPL来加载当前工作目录

时间:2016-01-24 22:07:18

标签: sublimetext3 jupyter sublimerepl

我已使用链接https://gist.github.com/MattDMo/6cb1dfbe8a124e1ca5af

为sublimeREPL安装了ipython jupyter控制台

但是,我遇到了一个问题,当我启动“Jupyter Console”时,它没有加载我正在工作的当前目录。

对于Instance,我正在处理文件“text.py in directory”/ home / sam / desktop / programs /“,我在sublimeREPL(jupyter控制台)中运行手动导入”import text“,我得到了一个模块未找到错误

ImportError                               Traceback (most recent call     last)
<ipython-input-3-0660e90ee9d4> in <module>()
----> 1 import text

ImportError: No module named text  

我参考了Set working directory to location of active script in SublimeREPL链接 并使用os.getcwd()

检查了cwd的目录
The directory that I see is /opt/sublimetext

我甚至尝试将“cwd”从“cwd”:“$ file_path”更改为“Main.sublime-menu”中的当前路径“cwd”:“/ home / sam / desktop / programs /”文件

我想知道是否有一种方法可以手动注册目录,甚至更好,如果sublimeREPL会自动选择目录,因为我将从不同的位置导入文件。

感谢。

0 个答案:

没有答案