-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
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
Windows qtconsole without cmd window #3
base: main
Are you sure you want to change the base?
Conversation
Nice! Would it be possible to provide the same experience when running from WinPython? |
@francisco-dlp The latest commit version seems work well. |
@@ -60,17 +72,26 @@ def add_jupyter_here(): | |||
os.path.dirname(__file__), 'icons')) | |||
logos = {'qtconsole': os.path.join(logo_path, 'jupyter-qtconsole.ico'), | |||
'notebook': os.path.join(logo_path, 'jupyter.ico')} | |||
|
|||
# Here I need to create a script for pythonw | |||
scr_fw = open(os.path.join(PYTHON_PATH, 'Scripts', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you create the sjc-jupyter-qtconsole-script.py
to start the qtconsole instead of using the identical one that ships with qtconsole?
The issue Request: no back-end cmd-line window for qtconsole in WINDOWS. is solved.
In
pythonw.exe
we can start up a qtconsole without holding a cmd-line window,now it's simpler and more beautiful to have a qtconsole opened.