Eos: nodeos command not found

Created on 20 Jul 2018  路  2Comments  路  Source: EOSIO/eos

i have updated today my eosio to version 1.1 and these are the steps that i have took.

  • git pull
  • ./eosio_build.sh
  • cd build
  • sudo make install

Everything completed successfully. After this when i try to run EOS locally i get this error

bash: nodeos: command not found

i looked around for solution but i am not able to fix it. I have run the test and it's failing on

Test #32: nodeos_run_test ......................Failed 0.25 sec
Test #36: restart-scenarios-test-resync ........
Failed 0.33 sec
Test #37: restart-scenarios-test-hard_replay ...Failed 0.36 sec
Test #39: validate_dirty_db_test ...............
Failed 0.24 sec
Test #40: nodeos_sanity_lr_test ................*Failed 0.31 sec

Most helpful comment

Binaries are installed to /usr/local/eosio/bin in the 1.1 release. You'll need to add that path to your PATH environment variable. This is not expected to continue in future releases.

To see why your tests are failing, in your build directory, run ctest --output-on-failure.

All 2 comments

Binaries are installed to /usr/local/eosio/bin in the 1.1 release. You'll need to add that path to your PATH environment variable. This is not expected to continue in future releases.

To see why your tests are failing, in your build directory, run ctest --output-on-failure.

Spot on @jgiszczak ! This worked for me:

$ export PATH=$PATH:/usr/local/eosio/bin
Was this page helpful?
0 / 5 - 0 ratings