forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.py
executable file
·170 lines (133 loc) · 5.51 KB
/
bootstrap.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the MIT License
# (see spyder/__init__.py for details)
"""
Bootstrapping Spyder
Detect environment and execute Spyder from source checkout
See Issue 741
"""
# pylint: disable=C0103
import time
time_start = time.time()
import os
import os.path as osp
import sys
import optparse
# --- Parse command line
parser = optparse.OptionParser(
usage="python bootstrap.py [options] [-- spyder_options]",
epilog="""\
Arguments for Spyder's main script are specified after the --
symbol (example: `python bootstrap.py -- --show-console`).
Type `python bootstrap.py -- --help` to read about Spyder
options.""")
parser.add_option('--gui', default=None,
help="GUI toolkit: pyqt5 (for PyQt5), pyqt (for PyQt4) or "
"pyside (for PySide, deprecated)")
parser.add_option('--hide-console', action='store_true',
default=False, help="Hide parent console window (Windows only)")
parser.add_option('--test', dest="test", action='store_true', default=False,
help="Test Spyder with a clean settings dir")
parser.add_option('--no-apport', action='store_true',
default=False, help="Disable Apport exception hook (Ubuntu)")
parser.add_option('--debug', action='store_true',
default=False, help="Run Spyder in debug mode")
options, args = parser.parse_args()
# Store variable to be used in self.restart (restart spyder instance)
os.environ['SPYDER_BOOTSTRAP_ARGS'] = str(sys.argv[1:])
assert options.gui in (None, 'pyqt5', 'pyqt', 'pyside'), \
"Invalid GUI toolkit option '%s'" % options.gui
# For testing purposes
if options.test:
os.environ['SPYDER_TEST'] = 'True'
# Prepare arguments for Spyder's main script
sys.argv = [sys.argv[0]] + args
print("Executing Spyder from source checkout")
DEVPATH = osp.dirname(osp.abspath(__file__))
# To activate/deactivate certain things for development
os.environ['SPYDER_DEV'] = 'True'
# --- Test environment for surprises
# Warn if Spyder is located on non-ASCII path
# See Issue 812
try:
osp.join(DEVPATH, 'test')
except UnicodeDecodeError:
print("STOP: Spyder is located in the path with non-ASCII characters,")
print(" which is known to cause problems (see issue #812).")
try:
input = raw_input
except NameError:
pass
input("Press Enter to continue or Ctrl-C to abort...")
# Warn if we're running under 3rd party exception hook, such as
# apport_python_hook.py from Ubuntu
if sys.excepthook != sys.__excepthook__:
if sys.excepthook.__name__ != 'apport_excepthook':
print("WARNING: 3rd party Python exception hook is active: '%s'"
% sys.excepthook.__name__)
else:
if not options.no_apport:
print("WARNING: Ubuntu Apport exception hook is detected")
print(" Use --no-apport option to disable it")
else:
sys.excepthook = sys.__excepthook__
print("NOTICE: Ubuntu Apport exception hook is disabed")
# --- Continue
from spyder.utils.vcs import get_git_revision
print("Revision %s, Branch: %s" % get_git_revision(DEVPATH))
sys.path.insert(0, DEVPATH)
print("01. Patched sys.path with %s" % DEVPATH)
# Selecting the GUI toolkit: PyQt5 if installed, otherwise PySide or PyQt4
# (Note: PyQt4 is still the officially supported GUI toolkit for Spyder)
if options.gui is None:
try:
import PyQt5 # analysis:ignore
print("02. PyQt5 is detected, selecting")
os.environ['QT_API'] = 'pyqt5'
except ImportError:
try:
import PyQt4 # analysis:ignore
print("02. PyQt4 is detected, selecting")
os.environ['QT_API'] = 'pyqt'
except ImportError:
print("02. No PyQt5 or PyQt4 detected, using PySide if available "
"(deprecated)")
else:
print ("02. Skipping GUI toolkit detection")
os.environ['QT_API'] = options.gui
if options.debug:
# safety check - Spyder config should not be imported at this point
if "spyder.config.base" in sys.modules:
sys.exit("ERROR: Can't enable debug mode - Spyder is already imported")
print("0x. Switching debug mode on")
os.environ["SPYDER_DEBUG"] = "True"
# this way of interaction suxx, because there is no feedback
# if operation is successful
# Checking versions (among other things, this has the effect of setting the
# QT_API environment variable if this has not yet been done just above)
from spyder import get_versions
versions = get_versions(reporev=False)
print("03. Imported Spyder %s" % versions['spyder'])
print(" [Python %s %dbits, Qt %s, %s %s on %s]" % \
(versions['python'], versions['bitness'], versions['qt'],
versions['qt_api'], versions['qt_api_ver'], versions['system']))
# Check that we have the right qtpy version
from spyder.utils import programs
if not programs.is_module_installed('qtpy', '>=1.1.0'):
print("")
sys.exit("ERROR: Your qtpy version is outdated. Please install qtpy "
"1.1.0 or higher to be able to work with Spyder!")
# --- Executing Spyder
if not options.hide_console and os.name == 'nt':
print("0x. Enforcing parent console (Windows only)")
sys.argv.append("--show-console") # Windows only: show parent console
print("04. Running Spyder")
from spyder.app import start
time_lapse = time.time()-time_start
print("Bootstrap completed in " +
time.strftime("%H:%M:%S.", time.gmtime(time_lapse)) +
# gmtime() converts float into tuple, but loses milliseconds
("%.4f" % time_lapse).split('.')[1])
start.main()