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


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

Installing ssdeep on Portable Python /advice

Started bylaguna-mc@mail.com
First post2014-03-20 20:16 -0400
Last post2014-03-21 22:32 -0500
Articles 3 — 2 participants

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


Contents

  Installing ssdeep on Portable Python /advice laguna-mc@mail.com - 2014-03-20 20:16 -0400
    Re: Installing ssdeep on Portable Python /advice Mark H Harris <harrismh777@gmail.com> - 2014-03-21 21:51 -0500
      Re: Installing ssdeep on Portable Python /advice Mark H Harris <harrismh777@gmail.com> - 2014-03-21 22:32 -0500

#68645 — Installing ssdeep on Portable Python /advice

Fromlaguna-mc@mail.com
Date2014-03-20 20:16 -0400
SubjectInstalling ssdeep on Portable Python /advice
Message-ID<mailman.8331.1395360978.18130.python-list@python.org>
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] | [next] | [standalone]


#68735

FromMark H Harris <harrismh777@gmail.com>
Date2014-03-21 21:51 -0500
Message-ID<lgitqs$ok4$2@speranza.aioe.org>
In reply to#68645
On 3/20/14 7:16 PM, laguna-mc@mail.com wrote:

>      $ 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?

It is strongly recommended that ssdeep be run on windows from 
precompiled binaries.  Building from sources is not recommended because 
of dependencies and environment...

Google is our frined;

http://ssdeep.sourceforge.net/usage.html


marcus

[toc] | [prev] | [next] | [standalone]


#68737

FromMark H Harris <harrismh777@gmail.com>
Date2014-03-21 22:32 -0500
Message-ID<lgj08q$tmp$1@speranza.aioe.org>
In reply to#68735
On 3/21/14 9:51 PM, Mark H Harris wrote:
> On 3/20/14 7:16 PM, laguna-mc@mail.com wrote:

>> $ 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?

> It is strongly recommended that ssdeep be run on windows from
> precompiled binaries. Building from sources is not recommended because
> of dependencies and environment...

> Google is our frined;

> http://ssdeep.sourceforge.net/usage.html


Actually, I restated that wrong. The doc says that building from sources 
on windows is NOT supported.

marcus

[toc] | [prev] | [standalone]


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


csiph-web