Run below command to install latest version of aeternity node:
bash <(curl -s https://install.aeternity.io/install.sh)
The last argument is interpreted as a version. The releases are published on GitHub.
To install an older specific version use:
bash <(curl -s https://install.aeternity.io/install.sh) 4.2.1
--no-prompt
- Disable confirmation prompt--delete
- Clean the target directory before installation--snapshot-restore
- Restore the database from a snapshotExample:
bash <(curl -s https://install.aeternity.io/install.sh) --no-prompt [version]
TARGET_DIR
- To override the path where aeternity node will be installed (default: $HOME/aeternity/node
)SNAPSHOT_DIR
- To override the path where the aeternity snapshot can be downloaded (default: $TARGET_DIR/data
)Example:
TARGET_DIR=/some/dir bash <(curl -s https://install.aeternity.io/install.sh)
For manual installation see the detailed instructions.
make tests