StarkNet Python SDK requires MinGW installed on Windows machines, official tutorial: https://starknetpy.readthedocs.io/en/latest/installation.htmlarrow-up-right
Более подробная статьяarrow-up-right на русском о том, что нужно установиться для нормальной работы софта.
Recommended python 3.10 version or above.
Create virtual environment in project dir:
python -m venv venv
Activate venv (Windows):
venv/Scripts/activate
Activate venv (Linux):
source venv/bin/activate
Install all requiered libraries using command:
pip install -r req.txt
Last updated 2 years ago