Skip to content

Commit

Permalink
install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
HardhatChad committed Aug 8, 2024
1 parent 67a938f commit 53cccb7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,30 @@ To install the CLI, use [cargo](https://doc.rust-lang.org/cargo/getting-started/
cargo install ore-cli
```


#### Dependencies
If you run into installation issues, please install the dependencies listed below for your operating system and try again:

Linux
```
sudo apt-get install openssl pkg-config libssl-dev
```

MacOS (using [Homebrew](https://brew.sh/))
```
brew install openssl pkg-config
# If you encounter issues with OpenSSL, you might need to set the following environment variables:
export PATH="/usr/local/opt/openssl/bin:$PATH"
export LDFLAGS="-L/usr/local/opt/openssl/lib"
export CPPFLAGS="-I/usr/local/opt/openssl/include"
```

Windows (using [Chocolatey](https://chocolatey.org/))
```
choco install pkgconfiglite
```

## Build

To build the codebase from scratch, checkout the repo and use cargo to build:
Expand Down

0 comments on commit 53cccb7

Please sign in to comment.