Commit 6628706b by devttys0

Updated capstone install documentation

parent 23030cf4
...@@ -47,18 +47,14 @@ Binwalk's `--disasm` option requires the [Capstone](http://www.capstone-engine.o ...@@ -47,18 +47,14 @@ Binwalk's `--disasm` option requires the [Capstone](http://www.capstone-engine.o
```bash ```bash
# Python2.7 # Python2.7
$ wget http://www.capstone-engine.org/download/3.0.1/capstone-3.0.1.tgz $ sudo apt-get install python-pip
$ tar -zxvf capstone-3.0.1.tgz $ sudo pip install capstone
$ (cd capstone-3.0.1 && ./make.sh && sudo make install)
$ (cd capstone-3.0.1/bindings/python && sudo python ./setup.py install)
``` ```
```bash ```bash
# Python3.x # Python3.x
$ wget http://www.capstone-engine.org/download/3.0.1/capstone-3.0.1.tgz $ sudo apt-get install python3-pip
$ tar -zxvf capstone-3.0.1.tgz $ sudo pip3 install capstone
$ (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