We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gui.py中564行
gui.py
os.startfile(folder)
在OSX下可以使用
os.system('open "%s"' % folder)
Linux下可以使用
os.system('xdg-open "%s"' % folder)
The text was updated successfully, but these errors were encountered:
👍
這篇 有人提到可以用 webbrowser.open,不過也有人說在 mac 底下沒有用。
pypi 上有個 desktop package,但我在 python3 + windows 7 會 import error。
Sorry, something went wrong.
在 2016.7.1 做了暫時的修正。
我寄了一封信給 desktop 的作者,如果有後續的話可能就改成用 desktop
94897d1
No branches or pull requests
gui.py
中564行在OSX下可以使用
Linux下可以使用
The text was updated successfully, but these errors were encountered: