Looking for the version of this series that uses Docker?
This tutorial is going to use pre-built binaries. For you to get started as quickly as possible this is the best option. Building from source is a more advanced option but will set you back an hour or more and you may encounter build errors.
You can find how to build EOSIO from source here.
brew tap eosio/eosio
brew install eosio
If you don't have Brew installed, follow the installation instructions on the official Brew website.
wget https://github.com/EOSIO/eos/releases/download/v1.8.6/eosio_1.8.6-1-ubuntu-18.04_amd64.deb
sudo apt install ./eosio_1.8.6-1-ubuntu-18.04_amd64.deb
wget https://github.com/EOSIO/eos/releases/download/v1.8.6/eosio_1.8.6-1-ubuntu-16.04_amd64.deb
sudo apt install ./eosio_1.8.6-1-ubuntu-18.04_amd64.deb
wget https://github.com/EOSIO/eos/releases/download/v1.8.6/eosio-1.8.6-1.el7.x86_64.rpm
sudo yum install ./eosio-1.8.6-1.el7.x86_64.rpm
If you have previous versions of eosio installed on your system, please uninstall before proceeding. Detail instruction see here
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 contracts
Get 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
Updated 14 days ago
What's Next
1.3 Start Your Node & Setup |