我无法打开http://localhost:3000。
如果它是相关的,这是#!/usr/bin/env python3
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
filechooserdialog = Gtk.FileChooserDialog()
filechooserdialog.set_title("FileChooserDialog")
filechooserdialog.add_button("_Open", Gtk.ResponseType.OK)
filechooserdialog.add_button("_Cancel", Gtk.ResponseType.CANCEL)
filechooserdialog.set_default_response(Gtk.ResponseType.OK)
response = filechooserdialog.run()
if response == Gtk.ResponseType.OK:
print("File selected: %s" % filechooserdialog.get_filename())
filechooserdialog.destroy()
命令:
rail s
答案 0 :(得分:1)
使用端口3000运行kill -9 $(lsof -i tcp:3000 -t)
来终止所有进程。