mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
321 B
25 lines
321 B
6 years ago
|
---
|
||
|
layout: core
|
||
|
permalink: /:collection/:path.html
|
||
|
---
|
||
|
|
||
|
# Install Clarity from Source
|
||
|
|
||
|
Build using `rust` and `cargo`:
|
||
|
|
||
|
```bash
|
||
|
$ cargo build --release
|
||
|
```
|
||
|
|
||
|
Install globally (you may have to run as sudoer):
|
||
|
|
||
|
```bash
|
||
|
$ cargo install --path .
|
||
|
```
|
||
|
|
||
|
You should now be able to run the command:
|
||
|
|
||
|
```bash
|
||
|
$ blockstack-core
|
||
|
```
|