skalenetwork/multisigwallet-cli

Install fails using system python

cstrangedk opened this issue · 1 comments

Despite setting local python version pyenv local 3.9.10, yarn install fails on python scripts/prepare.sh execution, since script defaults to use system python.

Was able to work around this by doing the following:

rm -rf venv                     # remove old venv based on python 3.6
python3.9 -m venv venv          # force venv to use python --version > 3.7
yarn install