gpt4 book ai didi

python - 从 Geany (Ubuntu) 上的 python 禁用/关闭/退出/退出终端屏幕

转载 作者:太空宇宙 更新时间:2023-11-04 05:56:06 27 4
gpt4 key购买 nike

我编写了一个程序来在 Ubuntu 上通过 Python 打开一个 GUI 格式的视频,我不希望命令终端屏幕总是在通过 Geany 编译器执行程序后立即打开。

你能不能让我离开这个终端屏幕

import Tkinter,ttk 
import tkMessageBox
from Tkinter import *
import io,sys,os,subprocess
from tkFileDialog import askopenfilename

def askforvideo():
global process
name= askopenfilename(title=[("videopen")],filetypes=[("Video Files","*.h264")])
if name != "":
subprocess.call(['vlc',name,'--play-and-exit'])
return

root = Tk()
root.title("Flight Recording Application")

mainframe = ttk.Frame(root, padding="200 200 200 200")
mainframe.grid()

ttk.Button(mainframe, text="Video Open", command=askforvideo).grid(column=10, row=3)
ttk.Button(mainframe, text="Exit", command=root.quit).grid(column=95, row=3)

root.mainloop()

最佳答案

以下将起作用。

单击编辑>首选项>工具在终端字段中将值更改为

bash -x %c

这将从 bash 而不是终端执行您的 python 命令。

关于python - 从 Geany (Ubuntu) 上的 python 禁用/关闭/退出/退出终端屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27722174/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com