Skip to content

Commit a3e6b66

Browse files
author
Susan Vanderplas
committed
Alt text
1 parent 706797c commit a3e6b66

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

part-tools/04-scripts-notebooks.qmd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,18 @@ Let's look at a terminal window for each operating system for a minute and exami
5959

6060
The default terminal on Windows is `cmd.exe`.
6161

62-
![Windows terminal. The location on the computer is shown first, and the prompt character is `>`.](../images/tools/windows-terminal.png)
62+
![Windows terminal. The location on the computer is shown first, and the prompt character is `>`.](../images/tools/windows-terminal.png){fig-alt="Screenshot of a windows terminal."}
6363

6464
Many people dislike `cmd.exe` and prefer to install PowerShell, which is a more fully featured terminal program.
65-
![A PowerShell window generally shows your location; in this configuration, the prompt character is '>'. Note that powershell has a PS at the beginning of the line, alerting the user that they are not in `cmd.exe`. ](../images/tools/powershell-terminal.png)
65+
![A PowerShell window generally shows your location; in this configuration, the prompt character is '>'. Note that powershell has a PS at the beginning of the line, alerting the user that they are not in `cmd.exe`. ](../images/tools/powershell-terminal.png){fig-alt="Screenshot of a PowerShell terminal on windows"}
6666

6767
#### {{< fa brands apple >}} Mac
6868

69-
![In a Mac terminal, you can see the username, computer name, location, and prompt character '%'. (base) in this image is printed because this user has a conda environment loaded -- this is something that may happen depending on how you install python. Macs use Zsh, which is a command line program (Z-shell) that interprets user input. ](../images/tools/mac-terminal.png)
69+
![In a Mac terminal, you can see the username, computer name, location, and prompt character '%'. (base) in this image is printed because this user has a conda environment loaded -- this is something that may happen depending on how you install python. Macs use Zsh, which is a command line program (Z-shell) that interprets user input. ](../images/tools/mac-terminal.png){fig-alt="Screenshot of a mac terminal"}
7070

7171
#### {{< fa brands linux >}} Linux
7272

73-
![This is an example of a KDE-based terminal on Linux. The Username, computer name, location, and prompt character '$' are all present. This linux terminal uses BASH, which is a slightly different command line program than the Z-shell used on Macs. In Linux, it is common to choose the terminal program you most prefer, and there are many options.](../images/tools/linux-terminal.png)
73+
![This is an example of a KDE-based terminal on Linux. The Username, computer name, location, and prompt character '$' are all present. This linux terminal uses BASH, which is a slightly different command line program than the Z-shell used on Macs. In Linux, it is common to choose the terminal program you most prefer, and there are many options.](../images/tools/linux-terminal.png){fig-alt="screenshot of a linux terminal"}
7474

7575
:::
7676

@@ -100,7 +100,7 @@ Open your system terminal and type `R`. Hit enter. You can issue commands direc
100100

101101
Try typing in `2+2` and hit enter.
102102

103-
![Launching R from the system terminal](../images/tools/terminal-launch-r.gif)
103+
![Launching R from the system terminal](../images/tools/terminal-launch-r.gif){fig-alt="Launching R from the system terminal screenshot. Gif shows R being typed in at the prompt, hitting enter, and seeing the R startup message."}
104104

105105

106106
#### Python - System Terminal
@@ -110,15 +110,15 @@ Open your system terminal and type `python` (on some systems, like mine, you may
110110

111111
Try typing in `2+2` and hit enter.
112112

113-
![Launching python from the system terminal](../images/tools/terminal-launch-py.gif)
113+
![Launching python from the system terminal](../images/tools/terminal-launch-py.gif){fig-alt="Gif of launching python from the system terminal. Shows typing python, getting an error message, typing python3, and getting the ipython prompt."}
114114

115115
#### RStudio - R
116116

117117
Open RStudio and navigate to the Console tab. You can issue commands directly to R by typing something in at the `>` prompt.
118118

119119
Try typing in `2+2` and hit enter.
120120

121-
![The Console tab is the left-most tab in RStudio - you can see that R's welcome message shows up first, along with version information. The last component visible is the `>`, which indicates that R is waiting for you to tell it to do something. Hitting enter will submit the command to calculate 2+2. Hopefully, you get 4.](../images/tools/Rstudio-r-console.png)
121+
![The Console tab is the left-most tab in RStudio - you can see that R's welcome message shows up first, along with version information. The last component visible is the `>`, which indicates that R is waiting for you to tell it to do something. Hitting enter will submit the command to calculate 2+2. Hopefully, you get 4.](../images/tools/Rstudio-r-console.png){fig-alt="Screenshot of the Rstudio window and typing 2+2 in the R console."}
122122

123123
#### RStudio - Python
124124

0 commit comments

Comments
 (0)