| content_title | link_text |
|---|---|
Install EOSIO Binaries |
Install EOSIO Binaries |
To get started as quickly as possible, we recommend using EOSIO pre-built binaries. You also have an advanced option to build from source but that would consume an hour or more.
[[info]] | You can find how to build EOSIO from source here.
The below commands will download binaries for respective operating systems.
brew tap eosio/eosio
brew install eosio[[info]] | If you don't have Brew installed, follow the installation instructions on the official Brew website.
wget https://github.com/eosio/eos/releases/download/v2.1.0/eosio_2.1.0-1-ubuntu-20.04_amd64.deb
sudo apt install ./eosio_2.1.0-1-ubuntu-20.04_amd64.debwget https://github.com/eosio/eos/releases/download/v2.1.0/eosio_2.1.0-1-ubuntu-18.04_amd64.deb
sudo apt install ./eosio_2.1.0-1-ubuntu-18.04_amd64.debwget https://github.com/eosio/eos/releases/download/v2.1.0/eosio-2.1.0-1.el7.x86_64.rpm
sudo yum install ./eosio-2.1.0-1.el7.x86_64.rpmwget https://github.com/eosio/eos/releases/download/v2.1.0/eosio-2.1.0-1.el8.x86_64.rpm
sudo yum install ./eosio-2.1.0-1.el8.x86_64.rpm[[warning]] | If you have previous versions of eosio installed on your system, please uninstall before proceeding. For detailed instructions, see here.
[[Note]]
| The installation process will install nodeos, cleos, and keosd, the components required to run and interact with a blockchain.
You're going to need to pick a directory to work from, it's suggested to create a contracts directory somewhere on your local drive.
mkdir contracts
cd contractsGet the path of that directory and save it for later, as you're going to need it, you can use the following command to get your absolute path.
pwd
Enter the absolute path to your contract directory below, and it will be inserted throughout the documentation to make your life a bit easier. This functionality requires cookies
Install the CDT: Steps to install the EOSIO Contract Development Toolkit (CDT) on your system.
