Show More
@@ -82,6 +82,12 b' ipengine_cmd_argv = [sys.executable, "-m", "IPython.parallel.engine"]' | |||||
82 |
|
82 | |||
83 | ipcontroller_cmd_argv = [sys.executable, "-m", "IPython.parallel.controller"] |
|
83 | ipcontroller_cmd_argv = [sys.executable, "-m", "IPython.parallel.controller"] | |
84 |
|
84 | |||
|
85 | if WINDOWS and sys.version_info < (3,): | |||
|
86 | # `python -m package` doesn't work on Windows Python 2, | |||
|
87 | # but `python -m module` does. | |||
|
88 | ipengine_cmd_argv = [sys.executable, "-m", "IPython.parallel.apps.ipengineapp"] | |||
|
89 | ipcontroller_cmd_argv = [sys.executable, "-m", "IPython.parallel.apps.ipcontrollerapp"] | |||
|
90 | ||||
85 | #----------------------------------------------------------------------------- |
|
91 | #----------------------------------------------------------------------------- | |
86 | # Base launchers and errors |
|
92 | # Base launchers and errors | |
87 | #----------------------------------------------------------------------------- |
|
93 | #----------------------------------------------------------------------------- |
General Comments 0
You need to be logged in to leave comments.
Login now