Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
77161ab9
Commit
77161ab9
authored
12 years ago
by
Gigg, Martyn Anthony
Browse files
Options
Downloads
Patches
Plain Diff
Make sure ipython uses the correct executable. Refs #5987
parent
73c200eb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Mantid/MantidPlot/ipython_plugin/internal_ipkernel.py
+21
-3
21 additions, 3 deletions
Code/Mantid/MantidPlot/ipython_plugin/internal_ipkernel.py
with
21 additions
and
3 deletions
Code/Mantid/MantidPlot/ipython_plugin/internal_ipkernel.py
+
21
−
3
View file @
77161ab9
...
@@ -15,13 +15,31 @@ from IPython.zmq.ipkernel import IPKernelApp
...
@@ -15,13 +15,31 @@ from IPython.zmq.ipkernel import IPKernelApp
# Functions and classes
# Functions and classes
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
def
get_executable
():
"""
Returns a string giving the executable to run when starting the IPython kernel
"""
# We have to make sure we can actually call the Python executable as this script will
# have probably been called from MantidPlot and in that instance MantidPlot will
# be the sys.executable file. Assume that Linux & OS X can just call Python but
# on Windows we will have to assume that python.exe is next to MantidPlot.exe
# but not necessarily in the PATH variable
import
sys
if
sys
.
platform
==
"
win32
"
:
import
os
# pythonw avoids a new terminal window when the new process starts (only applicable
# on the packaged build
return
os
.
path
.
join
(
sys
.
exec_prefix
,
"
pythonw.exe
"
)
else
:
return
"
python
"
def
pylab_kernel
(
gui
):
def
pylab_kernel
(
gui
):
"""
Launch and return an IPython kernel with pylab support for the desired gui
"""
Launch and return an IPython kernel with pylab support for the desired gui
"""
"""
kernel
=
IPKernelApp
.
instance
()
kernel
=
IPKernelApp
.
instance
()
# Note: pylab command seems to be needed for event loop to behave nicely
# Note: pylab command seems to be needed for event loop to behave nicely
kernel
.
initialize
([
'
python
'
,
'
--pylab=%s
'
%
gui
,
kernel
.
initialize
([
get_executable
(),
'
--pylab=%s
'
%
gui
,
"
--c=
'
%run -m mantidplotrc
'"
])
"
--c=
'
%run -m mantidplotrc
'"
])
return
kernel
return
kernel
...
@@ -58,7 +76,7 @@ class InternalIPKernel(object):
...
@@ -58,7 +76,7 @@ class InternalIPKernel(object):
"
qtconsoleapp.main()
"
"
qtconsoleapp.main()
"
])
])
from
subprocess
import
Popen
,
PIPE
from
subprocess
import
Popen
,
PIPE
return
Popen
([
sys
.
exec_prefix
+
'
\pythonw.exe
'
,
'
-c
'
,
cmd
,
'
--existing
'
,
cf
]
+
argv
,
stdout
=
PIPE
,
stderr
=
PIPE
)
return
Popen
([
get_executable
()
,
'
-c
'
,
cmd
,
'
--existing
'
,
cf
]
+
argv
,
stdout
=
PIPE
,
stderr
=
PIPE
)
return
connect_qtconsole
()
return
connect_qtconsole
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment