diff --git a/doc/usage.md b/doc/usage.md index 59d29ec0..15dba784 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -34,7 +34,6 @@ We like to use capa to help find the most interesting parts of a program, such a To install the plugin, you'll need to be running IDA Pro 7.4 or 7.5 with either Python 2 or Python 3. Next make sure pip commands are run using the Python install that is configured for your IDA install: - 1. Only if running Python 2.7, run command `$ pip install https://github.com/williballenthin/vivisect/zipball/master` - 2. Run `$ pip install .` from capa root directory - 3. Open IDA and navigate to `File > Script file…` or `Alt+F7` - 4. Navigate to `\capa\ida\` and choose `ida_capa_explorer.py` + 1. Run `$ pip install .` from capa root directory + 2. Open IDA and navigate to `File > Script file…` or `Alt+F7` + 3. Navigate to `\capa\ida\` and choose `ida_capa_explorer.py` diff --git a/setup.py b/setup.py index 63ccb12d..de7481fc 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ if sys.version_info >= (3, 0): else: # py2 requirements.append("enum34==1.1.6") # v1.1.6 is needed by halo 0.0.30 / spinners 0.0.24 - requirements.append("vivisect @ https://github.com/williballenthin/vivisect/tarball/v0.0.20200804#egg=vivisect") + requirements.append("vivisect==0.1.0rc3") requirements.append("viv-utils") requirements.append("networkx==2.2") # v2.2 is last version supported by Python 2.7 requirements.append("backports.functools-lru-cache")