forked from ethereum/execution-spec-tests
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/directly-create-release-tarball
- Loading branch information
Showing
65 changed files
with
2,680 additions
and
2,407 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
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
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,35 @@ | ||
# Installation Troubleshooting | ||
|
||
This page provides guidance on how to troubleshoot common issues that may arise when installing the Execution Spec Tests repository. | ||
|
||
## Pip Installation Issues | ||
|
||
### Coincurve Installation | ||
|
||
If you encounter an error when installing the `coincurve` package like the following: | ||
|
||
```bash | ||
Stored in directory: /tmp/... | ||
Building wheel for coincurve (pyproject.toml) ... error | ||
error: subprocess-exited-with-error | ||
|
||
× Building wheel for coincurve (pyproject.toml) did not run successfully. | ||
│ exit code: 1 | ||
╰─> [27 lines of output] | ||
... | ||
571 | #include <secp256k1_extrakeys.h> | ||
| ^~~~~~~~~~~~~~~~~~~~~~~ | ||
compilation terminated. | ||
error: command '/usr/bin/gcc' failed with exit code 1 | ||
[end of output] | ||
|
||
note: This error originates from a subprocess, and is likely not a problem with pip. | ||
ERROR: Failed building wheel for coincurve | ||
``` | ||
|
||
You may need to install the `libsecp256k1` library. On Ubuntu, you can install this library by running the following command: | ||
|
||
```bash | ||
sudo apt update | ||
sudo apt-get install libsecp256k1-dev | ||
``` |
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
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
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
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
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
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
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
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
Oops, something went wrong.