Skip to content

Commit 5ebc836

Browse files
Confirmation instructions for after oh-my-zsh setup to make sure Home… (#161)
* Confirmation instructions for after oh-my-zsh setup to make sure Homebrew is working * Added image for guidance on homebrew page * Fixed version number
1 parent a45f645 commit 5ebc836

File tree

8 files changed

+95
-7
lines changed

8 files changed

+95
-7
lines changed

Diff for: images/homebrew-next-steps.png

509 KB
Loading

Diff for: system-setup/6-ohmyzsh.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,25 @@ Run the following command in your termainl.
2222

2323
> **NOTE:** You may get a questions asking if you want to update your terminal to `zsh`. Say `yes` to this. If any warnings or errors occur, be sure to complete what is being suggested or get help.
2424
25-
At this point you `must` restart your terminal.
25+
At this point you **`must`** restart your terminal.
26+
27+
## **Confirmation**
28+
29+
- Re-open your terminal and run the command: `brew --version`
30+
- If the terminal outputs `Homebrew 3.5` or greater:
31+
- You're ready to continue through the setup guide.
32+
- **If you get an error** such as `zsh: command not found: brew`, then run the following commands:
33+
34+
- `echo 'export BREW_HOME="/home/linuxbrew/.linuxbrew/bin"' >> $HOME/.zprofile`
35+
- `echo 'export PATH="$PATH:$BREW_HOME"' >> $HOME/.zprofile`
36+
- `reset`
37+
- Confirm with the command: `brew --version`
38+
39+
Expected output:
40+
41+
```js
42+
Homebrew 3.5 or greater
43+
```
2644

2745
## Bookmark
2846

Diff for: system-setup/linux/3-homebrew.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ In your terminal, enter the following command:
1818

1919
- `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
2020
- You will be prompted several times along the way. Enter your password when prompted, accept all the defaults, say "Yes" if prompted. (***Note:*** *You will not have any visual feedback on your screen as you type. It is protecting your password by not displaying ANYTHING at all to the screen, but it is registering your key strokes.*)
21-
- Once the main installation finishes (could take up to 30 minutes), enter these commands, one at a time in your terminal - they should produce no errors, and do not produce success messages:
21+
- Once the main installation finishes (could take up to 30 minutes), **look at the output at the bottom of your terminal**. You may see an arrow pointing to "Next Steps" line with 2 commands.
22+
23+
![Homebrew No Next Steps example](../../images/homebrew-next-steps.png)
24+
25+
- Enter those commands, one at a time in your terminal - they should produce no errors, and do not produce success messages.
26+
27+
- Then enter these commands, one at a time in your terminal - they should produce no errors, and do not produce success messages:
2228
- `test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)`
2329
- `test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)`
2430

Diff for: system-setup/linux/6-ohmyzsh.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,25 @@ Run the following command in your termainl.
2222

2323
> **NOTE:** You may get a questions asking if you want to update your terminal to `zsh`. Say `yes` to this. If any warnings or errors occur, be sure to complete what is being suggested or get help.
2424
25-
At this point you `must` restart your terminal.
25+
At this point you **`must`** restart your terminal.
26+
27+
## **Confirmation**
28+
29+
- Re-open your terminal and run the command: `brew --version`
30+
- If the terminal outputs `Homebrew 3.5` or greater:
31+
- You're ready to continue through the setup guide.
32+
- **If you get an error** such as `zsh: command not found: brew`, then run the following commands:
33+
34+
- `echo 'export BREW_HOME="/home/linuxbrew/.linuxbrew/bin"' >> $HOME/.zprofile`
35+
- `echo 'export PATH="$PATH:$BREW_HOME"' >> $HOME/.zprofile`
36+
- `reset`
37+
- Confirm with the command: `brew --version`
38+
39+
Expected output:
40+
41+
```js
42+
Homebrew 3.5 or greater
43+
```
2644

2745
## Bookmark
2846

Diff for: system-setup/mac/2-homebrew.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ In your terminal, enter the following command:
2222

2323
- You will likely be prompted to install XCode command line tools. Say "Yes".
2424

25-
- When it completes, follow the "Next steps:" instructions displayed in your terminal, which should be similar to:
25+
- When it completes, follow the "Next steps:" instructions displayed in your terminal
26+
27+
![Homebrew No Next Steps example](../../images/homebrew-next-steps.png)
28+
29+
- which should be similar to:
2630
- ```echo 'eval "$(`which brew` shellenv)"' >> $HOME/.zprofile```
2731
- ```eval "$(`which brew` shellenv)"```
2832

Diff for: system-setup/mac/5-ohmyzsh.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,25 @@ Run the following command in your termainl.
2222

2323
> **NOTE:** You may get a questions asking if you want to update your terminal to `zsh`. Say `yes` to this. If any warnings or errors occur, be sure to complete what is being suggested or get help.
2424
25-
At this point you `must` restart your terminal.
25+
At this point you **`must`** restart your terminal.
26+
27+
## **Confirmation**
28+
29+
- Re-open your terminal and run the command: `brew --version`
30+
- If the terminal outputs `Homebrew 3.5` or greater:
31+
- You're ready to continue through the setup guide.
32+
- **If you get an error** such as `zsh: command not found: brew`, then run the following commands:
33+
34+
- `echo 'export BREW_HOME="/home/linuxbrew/.linuxbrew/bin"' >> $HOME/.zprofile`
35+
- `echo 'export PATH="$PATH:$BREW_HOME"' >> $HOME/.zprofile`
36+
- `reset`
37+
- Confirm with the command: `brew --version`
38+
39+
Expected output:
40+
41+
```js
42+
Homebrew 3.5 or greater
43+
```
2644

2745
## Bookmark
2846

Diff for: system-setup/windows/3-homebrew.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ In your terminal, enter the following command:
1818

1919
- `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
2020
- You will be prompted several times along the way. Enter your password when prompted, accept all the defaults, say "Yes" if prompted. (***Note:*** *You will not have any visual feedback on your screen as you type. It is protecting your password by not displaying ANYTHING at all to the screen, but it is registering your key strokes.*)
21-
- Once the main installation finishes (could take up to 30 minutes), enter these commands, one at a time in your terminal - they should produce no errors, and do not produce success messages:
21+
- Once the main installation finishes (could take up to 30 minutes), **look at the output at the bottom of your terminal**. You may see an arrow pointing to "Next Steps" line with 2 commands.
22+
23+
![Homebrew No Next Steps example](../../images/homebrew-next-steps.png)
24+
25+
- Enter those commands, one at a time in your terminal - they should produce no errors, and do not produce success messages.
26+
27+
- Then enter these commands, one at a time in your terminal - they should produce no errors, and do not produce success messages:
2228
- `test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)`
2329
- `test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)`
2430

Diff for: system-setup/windows/6-ohmyzsh.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,25 @@ Run the following command in your termainl.
2222

2323
> **NOTE:** You may get a questions asking if you want to update your terminal to `zsh`. Say `yes` to this. If any warnings or errors occur, be sure to complete what is being suggested or get help.
2424
25-
At this point you `must` restart your terminal.
25+
At this point you **`must`** restart your terminal.
26+
27+
## **Confirmation**
28+
29+
- Re-open your terminal and run the command: `brew --version`
30+
- If the terminal outputs `Homebrew 3.5.10` or something similar:
31+
- You're ready to continue through the setup guide.
32+
- **If you get an error** such as `zsh: command not found: brew`, then run the following commands:
33+
34+
- `echo 'export BREW_HOME="/home/linuxbrew/.linuxbrew/bin"' >> $HOME/.zprofile`
35+
- `echo 'export PATH="$PATH:$BREW_HOME"' >> $HOME/.zprofile`
36+
- `reset`
37+
- Confirm with the command: `brew --version`
38+
39+
Expected output:
40+
41+
```js
42+
Homebrew 3.5.10
43+
```
2644

2745
## Bookmark
2846

0 commit comments

Comments
 (0)