-
Notifications
You must be signed in to change notification settings - Fork 84
Developer installation
Feist Josselin edited this page Jun 27, 2019
·
1 revision
Use virtualenv to install a developer version of crytic-compile (up-to-date with master
):
pip3 install virtualenvwrapper
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv --python=`which python3` slither-dev
git clone https://github.com/crytic/crytic-compile
cd crytic-compile
python setup.py develop
Start a shell with the crytic-compile virtual environment by running:
workon crytic-compile-dev
Update crytic-compile by running git pull
from the crytic-compile directory.