由于python2.7直接 pip install tlsh失败,于是自己手动安装tlsh包
- 先git clone 项目
git clone https://github.com/trendmicro/tlsh.git
- 按步骤来 参考https://github.com/trendmicro/tlsh
(1) compile the C++ code
$./make.sh
(2) build the python version
$ cd py_ext/
$ python ./setup.py build
(3) install - possibly - sudo, run as root or administrator
$ python ./setup.py install
(4) test it
$ cd ../Testing
$ ./python_test.sh
这时候你python的disk-package or site-package就有tlsh了
完成