Install BlocksNet
The installation differs depending on the purpose.
For using in own project
If you cloned your own repository.
Install the required BlocksNet version and extras:
pip install blocksnet[full]
And get the following result:
Successfully installed blocksnet-1.0.0
Add BlocksNet to your
requirements.txt
:# requirements.txt ... blocksnet==1.0.0 ...
Or
pyproject.toml
:dependencies=[ ... "blocksnet[full]==1.0.0", ]
For contributing
If you cloned BlocksNet repository for participating in development just install the BlocksNet with required dev
packages:
pip install -e ".[dev]"
And get the following result:
Successfully installed blocksnet-1.0.0.post4