You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Update installation info for bb and noir (#8119)
People trip up on not having jq installed when noir instructions tell
them to use the bb command.
Update both to smooth this out.
---------
Co-authored-by: Tom French <[email protected]>
Copy file name to clipboardExpand all lines: barretenberg/cpp/src/barretenberg/bb/readme.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,7 @@
3
3
### Why is this needed?
4
4
5
5
Barretenberg is a library that allows one to create and verify proofs. One way to specify the circuit that one will use to create and verify
6
-
proofs over is to use the Barretenberg standard library. Another way, which pertains to this module is to supply the circuit description using
7
-
an IR called [ACIR](https://github.com/noir-lang/acvm).
6
+
proofs over is to use the Barretenberg standard library. Another way, which pertains to this module is to supply the circuit description using an IR called [ACIR](https://github.com/noir-lang/acvm).
8
7
9
8
This binary will take as input ACIR and witness values described in the IR to create proofs.
10
9
@@ -35,7 +34,7 @@ This binary will take as input ACIR and witness values described in the IR to cr
35
34
```
36
35
37
36
Check the version compatibility section below for how to identify matching versions.
38
-
37
+
39
38
4. Check if the installation was successful:
40
39
41
40
```bash
@@ -44,6 +43,10 @@ This binary will take as input ACIR and witness values described in the IR to cr
44
43
45
44
If installation was successful, the command would print the version of `bb` installed.
46
45
46
+
### Usage prerequisites
47
+
48
+
Certain `bb` commands will expect the tool `jq` to already be installed. If `jq -V` doesn't return a version number, install it from [here](https://jqlang.github.io/jq/download/).
0 commit comments