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
Please bear with me, cause I am new to ESP32, GitHub, Ubuntu and everything. The error I got when I tried to extract the google_key.json file is as follow...
: not found.sh: 2: extract_key.sh:
cat: ../google_key.json: No such file or directory
extract_key.sh: 3: extract_key.sh: jq: not found
Can't open key.pem for reading, No such file or directory
139761816768960:error:02001002:system library:fopen:No such file or directory:../crypto/bio/bss_file.c:72:fopen('key.pem','r')
139761816768960:error:2006D080:BIO routines:BIO_new_file:no such file:../crypto/bio/bss_file.c:79:
unable to load Private Key
Traceback (most recent call last):
File "extract_key.py", line 3, in <module>
from rsa import PrivateKey
ModuleNotFoundError: No module named 'rsa'
: not found.sh: 6: extract_key.sh:
extract_key.sh: 8: extract_key.sh: Syntax error: Bad fd number```
The text was updated successfully, but these errors were encountered:
cd scripts
sh extract_key.sh ../google_key.json ../key.json
First, looks like you don't have google_key.json file in the root of the repository. That's why you see cat: ../google_key.json: No such file or directory error.
Then, looks like you need to install jq. That's why you see extract_key.sh: 3: extract_key.sh: jq: not found.
Please bear with me, cause I am new to ESP32, GitHub, Ubuntu and everything. The error I got when I tried to extract the google_key.json file is as follow...
The text was updated successfully, but these errors were encountered: