-
Notifications
You must be signed in to change notification settings - Fork 982
Developer installation
Dan Guido edited this page Dec 13, 2018
·
15 revisions
Install a developer version of Slither (up-to-date with https://github.com/trailofbits/slither) with virtualenv:
pip3 install virtualenvwrapper
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv --python=`which python3` slither-dev
git clone https://github.com/trailofbits/slither
cd slither
python setup.py develop
Start a shell with the Slither virtual environment by running:
workon slither-dev
Update Slither by running git pull
from the slither directory.