According to published books suitable for a Wikipedia reference:
Does installation occur during runtime, or during compile time?
'a "run-time error" is detected after or during the installation or copying of the program' -- Wikipedia
According to published books suitable for a Wikipedia reference:
Does installation occur during runtime, or during compile time?
'a "run-time error" is detected after or during the installation or copying of the program' -- Wikipedia
During deployment, which is neither run-time, nor compile time.
Deployment is generally considered as a separate phase of the software development life cycle (SDLC). THE SDLC includes the following phases, which are much broader than simply 'running' or 'compiling' software:
UPDATE: I didn't realize you want something Wikipedia citable. How does this book chapter look?
Well... compilation is a separate operation from installation, but to say that installation is "runtime" is a bit facetious, as the installation routine is usually separate from the application itself. So really, neither.
Sounds like you don't understand the concepts involved. Let me clear it up for you.
The three are quite unrelated.
"Installation" is an ill-defined term in this context.
In some older systems, "installation" could refer to the loading of an executable program into the systems memory in preparation to run. It's very unlikely that's what is being talked about here, but if so, that's a run-time operation.
Ordinarily people mean "positioned into the operating system such that the application (as opposed to just a program) will run correctly whenever a user calls on it. In this case, it happens after compile time (of course) and before run-time. Just when is up to system management.