python: name capitalized

This commit is contained in:
Nguyen Anh Quynh 2016-10-22 23:56:33 +08:00
parent 20f5e40245
commit 591d651604
1 changed files with 9 additions and 9 deletions

View File

@ -2,12 +2,12 @@
from source. If you want to install it from a PyPi package (recommended if
you are on Windows), see README.txt.
1. To install capstone and the python bindings on *nix, run the command below:
1. To install Capstone and the Python bindings on *nix, run the command below:
$ sudo make install
To install capstone for python 3, run the command below:
(Note: this requires python3 installed in your machine)
To install Capstone for Python 3, run the command below:
(Note: this requires Python3 installed in your machine)
$ sudo make install3
@ -17,10 +17,10 @@
$ sudo make install_cython
Note that this requires cython installed first. To install cython, see
Note that this requires Cython installed first. To install Cython, see
below.
3. To install cython, you have to ensure that the header files
3. To install Cython, you have to ensure that the header files
and the static library for Python are installed beforehand.
E.g. on Ubuntu, do:
@ -28,24 +28,24 @@
$ sudo apt-get install python-dev
Depending on if you already have pip or easy_install installed, install
cython with either:
Cython with either:
$ sudo pip install cython
or:
$ sudo easy_install cython
NOTE: Depending on your distribution you might also be able to
install the required cython version using your repository.
install the required Cython version using your repository.
E.g. on Ubuntu, do:
$ sudo apt-get install cython
However, our cython-based binding requires cython version 0.19 or newer,
However, our cython-based binding requires Cython version 0.19 or newer,
but sometimes distributions only provide older version. Make sure to
verify the current installed version before going into section 2 above.
E.g, on Ubuntu, you can verify the current cython version with:
E.g, on Ubuntu, you can verify the current Cython version with:
$ apt-cache policy cython