Pypechain is currently supported only for Python 3.10.
You can install pypechain via pypi:
pip install --upgrade pypechain
Follow Pyenv install instructions.
Clone the repo into a <repo_location> of your choice.
git clone git@github.com:delvtech/pypechain.git <repo_location>
You can use any environment, but we recommend venv, which is part of the standard Python library.
cd <repo_location>
pyenv install 3.10
pyenv local 3.10
python -m venv .venv
source .venv/bin/activate
To install the build dependencies to upload to pypi:
pip install ".[build]"```
To install the test dependencies to upload to pypi:
pip install ".[test]"```
To install all the dependencies, run:
pip install ".[all]"```