##// END OF EJS Templates
Added test in ipcluster.py to see if the platform is win32. If so,...
Brian Granger -
Show More
@@ -329,6 +329,11 b' and ipengine separately.'
329 def main():
329 def main():
330 """Main driver for the two big options: local or remote cluster."""
330 """Main driver for the two big options: local or remote cluster."""
331
331
332 if sys.platform=='win32':
333 print """ipcluster does not work on Microsoft Windows. Please start
334 your IPython cluster using the ipcontroller and ipengine scripts."""
335 sys.exit(1)
336
332 opt,arg = parse_args()
337 opt,arg = parse_args()
333
338
334 clusterfile = opt.clusterfile
339 clusterfile = opt.clusterfile
@@ -27,7 +27,8 b' def install():'
27 directory_created(ip_start_menu)
27 directory_created(ip_start_menu)
28
28
29 # Create .py and .bat files to make things available from
29 # Create .py and .bat files to make things available from
30 # the Windows command line
30 # the Windows command line. Thanks to the Twisted project
31 # for this logic!
31 programs = [
32 programs = [
32 'ipython',
33 'ipython',
33 'iptest',
34 'iptest',
General Comments 0
You need to be logged in to leave comments. Login now