Skip to content

Commit

Permalink
fix: windows
Browse files Browse the repository at this point in the history
  • Loading branch information
wongsitu committed Oct 13, 2023
1 parent 2571031 commit a481121
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/installation/installfest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ Homebrew is a package manager for macOS (or Linux) that allows you to easily ins
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

If you are using Windows, run the following commands:

```bash
test -d ~/.linuxbrew && eval "$(~/.linuxbrew/bin/brew shellenv)"
test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
test -r ~/.bash_profile && echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> ~/.bash_profile
echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> ~/.profile
```

To check if Homebrew is installed, run the following command:

```bash
Expand Down

0 comments on commit a481121

Please sign in to comment.