Skip to content

Commit

Permalink
[Book] Add homebrew installation page (#82)
Browse files Browse the repository at this point in the history
* docs: add homebrew installation

Co-authored-by: Dmitry Mirgaleev <[email protected]>
  • Loading branch information
evgongora and dmirgaleev authored Oct 31, 2024
1 parent 629d0fc commit dd08c32
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
43 changes: 43 additions & 0 deletions docs/pages/install/homebrew.md
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.
1 change: 1 addition & 0 deletions vocs.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export default defineConfig({
{ text: "Static binaries", link: "/install/binaries" },
{ text: "Docker images", link: "/install/docker" },
{ text: "Debian packages", link: "/install/debian" },
{ text: "Homebrew", link: "/install/homebrew" },
],
},
{
Expand Down

0 comments on commit dd08c32

Please sign in to comment.