Commit 23030cf4 by devttys0

Merge pull request #113 from bmaia/patch-3

Updated install docs to include latest capstone
parents f1e187c7 b3beae4e
...@@ -46,10 +46,19 @@ $ sudo pip3 install pyqtgraph ...@@ -46,10 +46,19 @@ $ sudo pip3 install pyqtgraph
Binwalk's `--disasm` option requires the [Capstone](http://www.capstone-engine.org/) disassembly framework and its corresponding Python bindings: Binwalk's `--disasm` option requires the [Capstone](http://www.capstone-engine.org/) disassembly framework and its corresponding Python bindings:
```bash ```bash
$ wget http://www.capstone-engine.org/download/2.1.2/capstone-2.1.2.tgz # Python2.7
$ tar -zxvf capstone-2.1.2.tgz $ wget http://www.capstone-engine.org/download/3.0.1/capstone-3.0.1.tgz
$ (cd capstone-2.1.2 && ./make.sh && sudo make install) $ tar -zxvf capstone-3.0.1.tgz
$ (cd capstone-2.1.2/bindings/python && sudo python ./setup.py install) $ (cd capstone-3.0.1 && ./make.sh && sudo make install)
$ (cd capstone-3.0.1/bindings/python && sudo python ./setup.py install)
```
```bash
# Python3.x
$ wget http://www.capstone-engine.org/download/3.0.1/capstone-3.0.1.tgz
$ tar -zxvf capstone-3.0.1.tgz
$ (cd capstone-3.0.1 && ./make.sh && sudo make install)
$ (cd capstone-3.0.1/bindings/python && sudo python3 ./setup.py install)
``` ```
Binwalk relies on multiple external utilties in order to automatically extract/decompress files and data: Binwalk relies on multiple external utilties in order to automatically extract/decompress files and data:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment