docs/00_install/00_install-prebuilt-binaries.md
[[info | Previous Builds]] | If you have previously installed EOSIO from source using shell scripts, you must first run the Uninstall Script before installing any prebuilt binaries on the same OS.
Prebuilt EOSIO software packages are available for the operating systems below. Find and follow the instructions for your OS:
brew tap eosio/eosio
brew install eosio
brew remove eosio
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.deb
wget 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.deb
wget https://github.com/eosio/eos/releases/download/v2.1.0/eosio_2.1.0-1-ubuntu-16.04_amd64.deb
sudo apt install ./eosio_2.1.0-1-ubuntu-16.04_amd64.deb
sudo apt remove eosio
wget 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.rpm
wget 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
sudo yum remove eosio
After installing the prebuilt packages, the actual EOSIO binaries will be located under:
/usr/opt/eosio/<version-string>/bin (Linux-based); or/usr/local/Cellar/eosio/<version-string>/bin (MacOS)where version-string is the EOSIO version that was installed.
Also, soft links for each EOSIO program (nodeos, cleos, keosd, etc.) will be created under usr/bin or usr/local/bin to allow them to be executed from any directory.
To install previous versions of the EOSIO prebuilt binaries:
Browse to https://github.com/EOSIO/eos/tags and select the actual version of the EOSIO software you need to install.
Scroll down past the Release Notes and download the package or archive that you need for your OS.
Follow the instructions on the first paragraph above to install the selected prebuilt binaries on the given OS.