Show More
@@ -30,3 +30,4 b' global-exclude *.pyc' | |||
|
30 | 30 | global-exclude .dircopy.log |
|
31 | 31 | global-exclude .svn |
|
32 | 32 | global-exclude .bzr |
|
33 | global-exclude .hgignore |
|
1 | NO CONTENT: modified file chmod 100644 => 100755 |
@@ -38,7 +38,7 b' def install():' | |||
|
38 | 38 | import readline |
|
39 | 39 | except ImportError: |
|
40 | 40 | print ('To take full advantage of IPython, you need readline from:\n' |
|
41 |
'http |
|
|
41 | 'https://launchpad.net/pyreadline') | |
|
42 | 42 | |
|
43 | 43 | ipybase = '"' + prefix + r'\scripts\ipython"' |
|
44 | 44 | # Create IPython entry ... |
@@ -53,11 +53,15 b' def install():' | |||
|
53 | 53 | |
|
54 | 54 | f = ip_dir + r'\pysh.lnk' |
|
55 | 55 | a = ipybase+' -p sh' |
|
56 | mkshortcut(python,'IPython command prompt mode',f,a) | |
|
56 | mkshortcut(python,'IPython (command prompt mode)',f,a) | |
|
57 | ||
|
58 | f = ip_dir + r'\pylab.lnk' | |
|
59 | a = ipybase+' -pylab' | |
|
60 | mkshortcut(python,'IPython (PyLab mode)',f,a) | |
|
57 | 61 | |
|
58 | 62 | f = ip_dir + r'\scipy.lnk' |
|
59 | 63 | a = ipybase+' -pylab -p scipy' |
|
60 | mkshortcut(python,'IPython scipy profile',f,a) | |
|
64 | mkshortcut(python,'IPython (scipy profile)',f,a) | |
|
61 | 65 | |
|
62 | 66 | # Create documentation shortcuts ... |
|
63 | 67 | t = prefix + r'\share\doc\ipython\manual\ipython.pdf' |
@@ -224,6 +224,7 b' def find_scripts():' | |||
|
224 | 224 | 'IPython/kernel/scripts/ipcluster', |
|
225 | 225 | 'scripts/ipython', |
|
226 | 226 | 'scripts/ipythonx', |
|
227 | 'scripts/ipython-wx', | |
|
227 | 228 | 'scripts/pycolor', |
|
228 | 229 | 'scripts/irunner', |
|
229 | 230 | 'scripts/iptest', |
@@ -72,7 +72,7 b' def run(wait=0):' | |||
|
72 | 72 | # File and directory names |
|
73 | 73 | ip_dir = program_files_dir + r'\IPython' |
|
74 | 74 | ip_prog_dir = programs_dir + r'\IPython' |
|
75 | doc_dir = ip_dir+r'\doc' | |
|
75 | doc_dir = ip_dir+r'\docs' | |
|
76 | 76 | ip_filename = ip_dir+r'\IPython_shell.py' |
|
77 | 77 | pycon_icon = doc_dir+r'\pycon.ico' |
|
78 | 78 | |
@@ -83,7 +83,7 b' def run(wait=0):' | |||
|
83 | 83 | shutil.copy(sys.prefix+r'\Scripts\ipython',ip_filename) |
|
84 | 84 | if os.path.isdir(doc_dir): |
|
85 | 85 | shutil.rmtree(doc_dir) |
|
86 | shutil.copytree('doc',doc_dir) | |
|
86 | shutil.copytree('docs',doc_dir) | |
|
87 | 87 | |
|
88 | 88 | # make shortcuts for IPython, html and pdf docs. |
|
89 | 89 | print 'Making entries for IPython in Start Menu...', |
@@ -104,8 +104,8 b' def run(wait=0):' | |||
|
104 | 104 | os.mkdir(ip_prog_dir) |
|
105 | 105 | os.chdir(ip_prog_dir) |
|
106 | 106 | |
|
107 |
man_pdf = doc_dir + r'\ |
|
|
108 |
man_htm = doc_dir + r'\ |
|
|
107 | man_pdf = doc_dir + r'\dist\ipython.pdf' | |
|
108 | man_htm = doc_dir + r'\dist\index.html' | |
|
109 | 109 | |
|
110 | 110 | make_shortcut('IPython.lnk',sys.executable, '"%s"' % ip_filename, |
|
111 | 111 | my_documents_dir, |
General Comments 0
You need to be logged in to leave comments.
Login now