-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Book] Add homebrew installation page (#82)
* docs: add homebrew installation Co-authored-by: Dmitry Mirgaleev <[email protected]>
- Loading branch information
1 parent
629d0fc
commit dd08c32
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Installing Stone Using Homebrew | ||
|
||
In this guide, you'll learn how to easily install Stone on your macOS ARM64 system using Homebrew, a package manager for macOS. | ||
|
||
## Prerequisites | ||
Before we get started, make sure you have the following: | ||
- A macOS ARM64 system. | ||
- Homebrew installed on your machine. If you haven't set up Homebrew yet you can follow the simple instructions at [brew.sh](https://brew.sh/). | ||
|
||
## Installation Steps | ||
Let’s walk through the steps to install the `stone-prover` package via Homebrew: | ||
|
||
1. **Tap the Stone Prover Repository** | ||
First, add the `homebrew-stone-prover` tap to your list of Homebrew repositories: | ||
```bash | ||
brew tap dipdup-io/homebrew-stone-prover | ||
``` | ||
This tap makes it super easy to install the Stone Prover. | ||
|
||
2. **Install the stone-prover Package** | ||
Now, let’s install the `stone-prover` package using Homebrew: | ||
```bash | ||
brew install stone-prover | ||
``` | ||
This command will download and install the latest version of Stone on your system. Easy peasy! | ||
|
||
## Troubleshooting | ||
If you run into any bumps along the way during installation or usage, here are some helpful tips: | ||
|
||
- **Update Homebrew:** | ||
Make sure your Homebrew installation is up to date: | ||
```bash | ||
brew update | ||
``` | ||
|
||
- **Reinstall the Package:** | ||
If the installation didn’t go as planned, you can try reinstalling: | ||
```bash | ||
brew reinstall stone-prover | ||
``` | ||
|
||
- **Check the Homebrew Tap Repository:** | ||
For more information, to report issues, or to contribute to the formula, feel free to visit the [homebrew-stone-prover](https://github.com/dipdup-io/homebrew-stone-prover) repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters