|
6 | 6 | \centering%
|
7 | 7 | %
|
8 | 8 | \subfloat[][%
|
9 |
| -Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \windows\ \windowsTerminal). % |
| 9 | +Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \microsoftWindows\ \windowsTerminal). % |
10 | 10 | Change into the directory \inQuotes{directory} where your \python\ file is located, by typing \bashil{cd directory} and hit \keys{\enter}.%
|
11 | 11 | \label{fig:terminalPython1cd}%
|
12 | 12 | ]{\includegraphics[width=0.9\linewidth]{\currentDir/terminalPython1cd}}%
|
|
72 | 72 | \centering%
|
73 | 73 | %
|
74 | 74 | \subfloat[][%
|
75 |
| -Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \windows\ \windowsTerminal), enter \bashil{python3}, then hit \keys{\enter}.% |
| 75 | +Open a \pgls{terminal} (by pressing \ubuntuTerminal\ under \ubuntu\ \linux; under \microsoftWindows\ \windowsTerminal), enter \bashil{python3}, then hit \keys{\enter}.% |
76 | 76 | \label{fig:terminalConsole1python}%
|
77 | 77 | ]{\includegraphics[width=0.852\linewidth]{\currentDir/terminalConsole1python}}%
|
78 | 78 | %
|
|
146 | 146 | \label{sec:terminalPython}%
|
147 | 147 | In order to directly execute a \python\ program in a \pgls{terminal}, we first need to open one.
|
148 | 148 | Under \ubuntu\ \linux, we simply press \ubuntuTerminal.
|
149 |
| -Under \windows, we have to \windowsTerminal. |
| 149 | +Under \microsoftWindows, we have to \windowsTerminal. |
150 | 150 | Once the terminal is open, we need to change into the directory where the program is located.
|
151 |
| -Under both \linux\ and \windows, this can be done by typing the command \bashil{cd}, followed by the path to the directory, and hitting \keys{\enter}.\footnote{% |
152 |
| -Under \windows, you may also need to change into the correct drive first.} |
| 151 | +Under both \linux\ and \microsoftWindows, this can be done by typing the command \bashil{cd}, followed by the path to the directory, and hitting \keys{\enter}.\footnote{% |
| 152 | +Under \microsoftWindows, you may also need to change into the correct drive first.} |
153 | 153 | We provide a screenshot for that, taken under \ubuntu\ \linux, in \cref{fig:terminalPython1cd}.
|
154 | 154 | Now we simply call the \python\ interpreter by writing \bashil{python3} followed by the file name of our program, which is \bashil{very_first_program.py} in our case.
|
155 | 155 | In \cref{fig:terminalPython2python} we do this and hit \keys{\enter}, which causes the \python\ interpreter to execute our program.
|
|
177 | 177 | Let us now open a \python\ console from the \pgls{terminal} instead of using the one in \pycharm.
|
178 | 178 | We therefore first need to open a normal terminal.
|
179 | 179 | Under \ubuntu\ \linux, we simply press \ubuntuTerminal.
|
180 |
| -Under \windows, we have to \windowsTerminal. |
| 180 | +Under \microsoftWindows, we have to \windowsTerminal. |
181 | 181 | Either way, the terminal opens and we can enter \bashil{python3} and press \keys{\enter}, as shown in \cref{fig:terminalConsole1python}.
|
182 | 182 | Now the \python\ interpreter starts right inside the \pgls{terminal}~(\cref{fig:terminalConsole2pythonRunning}).
|
183 | 183 | The prompt, i.e., the place where we can write our code, again is preceded by the \bashil{>>>} characters.
|
|
188 | 188 | We type in \pythonil{exit()} and press \keys{\enter}, as shown in \cref{fig:terminalConsole5exit}, which causes the \python\ interpreter to exit.
|
189 | 189 | We are now back in the basic terminal, as shown in \cref{fig:terminalConsole6left}.
|
190 | 190 | In these figures, I was using \ubuntu\ \linux.
|
191 |
| -On \windows\ or other \linux\ variants, the process would have looked quite similar.% |
| 191 | +On \microsoftWindows\ or other \linux\ variants, the process would have looked quite similar.% |
192 | 192 | \endhsection%
|
193 | 193 | %
|
194 | 194 | \bestPractice{runningProgram}{The only proper way to run a \python\ application in a productive scenario is in the terminal, as shown in \cref{sec:terminalPython}.}%
|
|
0 commit comments