Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #68645 > unrolled thread
| Started by | laguna-mc@mail.com |
|---|---|
| First post | 2014-03-20 20:16 -0400 |
| Last post | 2014-03-21 22:32 -0500 |
| Articles | 3 — 2 participants |
Back to article view | Back to comp.lang.python
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
| From | laguna-mc@mail.com |
|---|---|
| Date | 2014-03-20 20:16 -0400 |
| Subject | Installing 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]
| From | Mark H Harris <harrismh777@gmail.com> |
|---|---|
| Date | 2014-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]
| From | Mark H Harris <harrismh777@gmail.com> |
|---|---|
| Date | 2014-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