I am on a Mac and want to install and use Vertigo (software tool for mutation testing Solidity smart contracts).
I follow the installation instructions here: https://pypi.org/project/eth-vertigo/
And install Vertigo with:
> pip3 install eth-vertigo
Then, I run:
> vertigo
zsh: command not found: vertigo
There seems to be a missing step in the instructions (in my case)!
When you install Vertigo with
pip3it tells you the path, e.g.:Look in the output, on the command line, from the installation.
Then, the vertigo binary file (which we thought would execute natively) is located here:
So, to make this work, please add the
bin/path to yourPATHvariable like so:Now it should work:
Perhaps this is related to it not installing properly in virtual environments.