Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #68595 > unrolled thread

Installing ssdeep on Portable Python

Started bylaguna-mc@mail.com
First post2014-03-20 14:22 -0400
Last post2014-03-20 14:22 -0400
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  Installing ssdeep on Portable Python laguna-mc@mail.com - 2014-03-20 14:22 -0400

#68595 — Installing ssdeep on Portable Python

Fromlaguna-mc@mail.com
Date2014-03-20 14:22 -0400
SubjectInstalling ssdeep on Portable Python
Message-ID<mailman.8308.1395339749.18130.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

Portable Python 2.7 for Windows, the Python application have dependency on ssdeep-2.10, which is a binary exe.

The ssdeep (libfuzzy) installation example was shown for Linux platform only:
----
a) libfuzzy can be installed via apt-get:

    $ sudo apt-get install libfuzzy2

b) to install libfuzzy from source, download the gzipped tarball from http://ssdeep.sourceforge.net/#download, then run:

    $ tar -zxvf ssdeep-2.10.tar.gz
    $ cd ssdeep-2.10 && ./configure && make && sudo make install
-----
I need install it on PortablePython for Windows, so it's not clear how to make this: where should be placed ssdeep Windows binary files, that Python application can found it?

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web