IPython Notebook:使用GUI打开/选择文件(Qt Dialog)

时间:2013-12-26 20:36:25

标签: ipython ipython-notebook

当您在笔记本上对不同的数据文件执行相同的分析时,可以方便地以图形方式选择数据文件。

在我的python脚本中,我通常会实现一个QT对话框,它返回所选文件的文件名:

from PySide import QtCore, QtGui

def gui_fname(dir=None):
    """Select a file via a dialog and return the file name.
    """
    if dir is None: dir ='./'
    fname = QtGui.QFileDialog.getOpenFileName(None, "Select data file...", 
            dir, filter="All files (*);; SM Files (*.sm)")
    return fname[0]

但是,从笔记本电脑运行此功能

full_fname = gui_fname()

导致内核死亡(并重新启动):

有趣的是,将3个命令放在3个单独的单元格中

%matplotlib qt
full_fname = gui_fname()
%matplotlib inline

但是当我将这些命令放在一个单元中时,内核会再次死掉。

这可以防止创建像gui_fname_ipynb()这样透明地允许用GUI选择文件的函数。

为方便起见,我创建了一个说明问题的笔记本:

有关如何从IPython Notebook中执行文件选择对话框的任何建议吗?

3 个答案:

答案 0 :(得分:4)

在Windows上使用Anaconda 5.0.0(Python 3.6.2,IPython 6.1.0),以下两个选项都适用于我。

选项1:完全在Jupyter笔记本中:

CELL 1:

%gui qt

from PyQt5.QtWidgets import QFileDialog

def gui_fname(dir=None):
    """Select a file via a dialog and return the file name."""
    if dir is None: dir ='./'
    fname = QFileDialog.getOpenFileName(None, "Select data file...", 
                dir, filter="All files (*);; SM Files (*.sm)")
    return fname[0]

CELL 2:

gui_fname()

这对我有用,但似乎有点......脆弱。如果我将这两个东西组合到同一个单元格中,它就会崩溃。或者,如果我省略%gui qt,它就会崩溃。如果我"重新启动内核并运行所有单元格",它就不起作用。所以我有点像其他选择...

更可靠的选项:在新进程中打开对话框的单独脚本

(基于mkrog代码here。)

将单独的PYTHON SCRIPT中的以下内容发出blah.py

from sys import executable, argv
from subprocess import check_output
from PyQt5.QtWidgets import QFileDialog, QApplication

def gui_fname(directory='./'):
    """Open a file dialog, starting in the given directory, and return
    the chosen filename"""
    # run this exact file in a separate process, and grab the result
    file = check_output([executable, __file__, directory])
    return file.strip()

if __name__ == "__main__":
    directory = argv[1]
    app = QApplication([directory])
    fname = QFileDialog.getOpenFileName(None, "Select a file...", 
            directory, filter="All files (*)")
    print(fname[0])

......并在你的JUPYTER笔记本中

import blah
blah.gui_fname()

答案 1 :(得分:2)

此行为是IPython中的一个错误:

https://github.com/ipython/ipython/issues/4997

这里修复了:

https://github.com/ipython/ipython/pull/5077

打开gui对话框的功能应该适用于当前的master和即将发布的2.0版本。

到目前为止,最后的1.x版本(1.2.1)包含修复的后端。

编辑:示例代码仍然崩溃了IPython 2.x,请参阅this issue

答案 2 :(得分:0)

我有一个通用代码,可以正常工作。这是我的建议:

try:
    from tkinter import Tk
    from tkFileDialog import askopenfilenames
except:
    from tkinter import Tk
    from tkinter import filedialog

Tk().withdraw() # we don't want a full GUI, so keep the root window from appearing
filenames = filedialog.askopenfilenames() # show an "Open" dialog box and return the path to the selected file

print (filenames)

希望它会有用