Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: luv2drnkbr on October 06, 2014, 08:14:35 AM



Title: Can somebody upload their Windows scrypt python site-package module?
Post by: luv2drnkbr on October 06, 2014, 08:14:35 AM
Trying to install python scrypt wrapper module in Windows 7 x64 and running into all kinds of problems.  Apparently nobody has been able to do it on x64 Windows, but a few have had success on win32 and just copied the site-package module folder over and that worked.  I was hoping some kind soul who has it working on Windows, x86 or x64, could upload their scrypt module folder for me, since the pure Python implementation of Scrypt (module "pyscrypt" if you're interested in testing) is about 300x slower than the C implementation wrapper....


Title: Re: Can somebody upload their Windows scrypt python site-package module?
Post by: luv2drnkbr on October 06, 2014, 10:33:24 PM
I would like to formally protest the movement of this question to the alternate currencies sub.  The reason I want Scrypt is because I'm building a Bitcoin tools program and want to implement Bip38.  It is entirely related to Bitcoin specifically and NOT with any alt coins.  Additionally, I think the question is less likely to be answered in a less frequented sub.

Yet another reason why there should be a misc questions board....


Title: Re: Can somebody upload their Windows scrypt python site-package module?
Post by: bengtåke on October 06, 2014, 10:57:08 PM
Here you go: https://www.sendspace.com/file/0nhd8c

Make sure you have a 64 bit python installation or it won't work.


Title: Re: Can somebody upload their Windows scrypt python site-package module?
Post by: Kamilion on June 18, 2015, 09:32:16 PM
Here you go: https://www.sendspace.com/file/0nhd8c

Make sure you have a 64 bit python installation or it won't work.

Would you mind reuploading that? Sendspace has removed the file.


Title: Re: Can somebody upload their Windows scrypt python site-package module?
Post by: bengtåke on June 19, 2015, 08:23:47 AM
Here you go: https://www.sendspace.com/file/0nhd8c

Make sure you have a 64 bit python installation or it won't work.

Would you mind reuploading that? Sendspace has removed the file.

Put it on a mega instead (shouldn't expire so quickly) https://mega.co.nz/#!eJd1TARD!IFHKj-xC1LfqLcym-j7KMChS6BzdOCBqMN2dcPYF06c (https://mega.co.nz/#!eJd1TARD!IFHKj-xC1LfqLcym-j7KMChS6BzdOCBqMN2dcPYF06c)

Here are some instructions to build it yourself:

First make sure you install the amd64 version of python, if you want a 64 bit build. The same process will work with python 32bit but will build a 32 bit module

Then just grab the p2pool repo;
https://github.com/forrestv/p2pool/archive/master.zip

extract it and enter the p2pool/litecoin_scrypt directory

Then to build your own enter the commands mentioned below in a windows command prompt

Set up the environment variables for the Visual studio 2010 build tools (note that it is different for 2012/2013; VS110COMNTOOLS for 2012 VS120COMNTOOLS for 2013)
Quote
SET VS90COMNTOOLS=%VS100COMNTOOLS%


then run

Quote
python setup.py install

and it should build and install a 64 bit version of the module for you.

Quote
> dumpbin /headers build\lib.win-amd64-2.7\ltc_scrypt.pyd

Microsoft (R) COFF/PE Dumper Version 10.00.40219.01
Copyright (C) Microsoft Corporation.  All rights reserved.


Dump of file build\lib.win-amd64-2.7\ltc_scrypt.pyd

PE signature found

File Type: DLL

FILE HEADER VALUES
            8664 machine (x64) <==


Title: Re: Can somebody upload their Windows scrypt python site-package module?
Post by: Kamilion on July 08, 2015, 04:59:56 AM
Thanks a lot!