149 print(" --no-apis don't install API files") |
149 print(" --no-apis don't install API files") |
150 print(" -b dir where the binaries will be installed") |
150 print(" -b dir where the binaries will be installed") |
151 print(" (default: {0})".format(platBinDir)) |
151 print(" (default: {0})".format(platBinDir)) |
152 print(" -d dir where eric python files will be installed") |
152 print(" -d dir where eric python files will be installed") |
153 print(" (default: {0})".format(modDir)) |
153 print(" (default: {0})".format(modDir)) |
154 print(" -f file configuration file naming the various installation" " paths") |
154 print(" -f file configuration file naming the various installation paths") |
155 if not sys.platform.startswith(("win", "cygwin")): |
155 if not sys.platform.startswith(("win", "cygwin")): |
156 print(" -i dir temporary install prefix") |
156 print(" -i dir temporary install prefix") |
157 print(" (default: {0})".format(distDir)) |
157 print(" (default: {0})".format(distDir)) |
158 if sys.platform == "darwin": |
158 if sys.platform == "darwin": |
159 print(" -m name name of the Mac app bundle") |
159 print(" -m name name of the Mac app bundle") |
163 print(" (default: {0})".format(macAppBundlePath)) |
163 print(" (default: {0})".format(macAppBundlePath)) |
164 print(" -p python path of the python executable") |
164 print(" -p python path of the python executable") |
165 print(" (default: {0})".format(macPythonExe)) |
165 print(" (default: {0})".format(macPythonExe)) |
166 print(" -c don't cleanup old installation first") |
166 print(" -c don't cleanup old installation first") |
167 print(" -v, --verbose print some more information") |
167 print(" -v, --verbose print some more information") |
168 print(" -x don't perform dependency checks (use on your own" " risk)") |
168 print(" -x don't perform dependency checks (use on your own risk)") |
169 print(" -z don't compile the installed python files") |
169 print(" -z don't compile the installed python files") |
170 print(" --yes answer 'yes' to all questions") |
170 print(" --yes answer 'yes' to all questions") |
171 print() |
171 print() |
172 if sys.platform.startswith(("win", "cygwin")): |
172 if sys.platform.startswith(("win", "cygwin")): |
173 print(" --clean-desktop delete desktop links before installation") |
173 print(" --clean-desktop delete desktop links before installation") |
174 print(" --no-info don't create the install info file") |
174 print(" --no-info don't create the install info file") |
175 print(" --with-tools don't install qt6-applications") |
175 print(" --with-tools don't install qt6-applications") |
176 print() |
176 print() |
177 print("The file given to the -f option must be valid Python code" " defining a") |
177 print("The file given to the -f option must be valid Python code defining a") |
178 print( |
178 print( |
179 "dictionary called 'cfg' with the keys 'ericDir', 'ericPixDir'," |
179 "dictionary called 'cfg' with the keys 'ericDir', 'ericPixDir'," |
180 " 'ericIconDir'," |
180 " 'ericIconDir'," |
181 ) |
181 ) |
182 print("'ericDTDDir', 'ericCSSDir', 'ericStylesDir', 'ericThemesDir',") |
182 print("'ericDTDDir', 'ericCSSDir', 'ericStylesDir', 'ericThemesDir',") |