@@ -573,7 +573,7 @@ def _create_launchers(self):
573
573
ipython_exe ,
574
574
args = ' qtconsole --matplotlib=inline' ,
575
575
workdir = r'${WINPYDIR}\..\notebooks' )
576
- self .create_launcher ('IPython Notebook.exe' , 'ipython .ico' ,
576
+ self .create_launcher ('IPython Notebook.exe' , 'jupyter .ico' ,
577
577
command = '${WINPYDIR}\Scripts\%s' %
578
578
ipython_exe ,
579
579
args = ' notebook --matplotlib=inline' ,
@@ -588,6 +588,26 @@ def _create_launchers(self):
588
588
self .create_launcher ('WinMergeU.exe' , 'winmerge.ico' ,
589
589
command = r'${WINPYDIR}\..' + self .WINMERGE_PATH ,
590
590
workdir = r'${WINPYDIR}' )
591
+
592
+ # R console launchers
593
+ r_exe = self .R_PATH + r"\i386\R.exe"
594
+ if osp .isfile (self .winpydir + r_exe ):
595
+ self .create_launcher ('R Console32.exe' , 'r.ico' ,
596
+ command = '${WINPYDIR}\..' + r_exe ,
597
+ workdir = r'${WINPYDIR}\..\notebooks' )
598
+ r_exe = self .R_PATH + r"\x64\R.exe"
599
+ if osp .isfile (self .winpydir + r_exe ):
600
+ self .create_launcher ('R Console64.exe' , 'r.ico' ,
601
+ command = '${WINPYDIR}\..' + r_exe ,
602
+ workdir = r'${WINPYDIR}\..\notebooks' )
603
+
604
+ # Julia console launcher
605
+ julia_exe = self .JULIA_PATH + r"\julia.exe"
606
+ if osp .isfile (self .winpydir + julia_exe ):
607
+ self .create_launcher ('Julia Console.exe' , 'julia.ico' ,
608
+ command = '${WINPYDIR}\..' + julia_exe ,
609
+ workdir = r'${WINPYDIR}\..\notebooks' )
610
+
591
611
self ._print_done ()
592
612
593
613
def _create_batch_scripts (self ):
@@ -1157,3 +1177,5 @@ def make_all(build_number, release_level, pyver,
1157
1177
# verbose=False, archis=(64, ), flavor='FlavorRfull')
1158
1178
#make_all(5, '', pyver='3.4', rootdir=r'D:\Winpython',
1159
1179
# verbose=False, archis=(32, ), flavor='FlavorJulia')
1180
+ #make_all(5, '', pyver='3.4', rootdir=r'D:\Winpython',
1181
+ # verbose=False, archis=(64, ), flavor='FlavorJulia')
0 commit comments