2011-08-28 97 views
5

这个问题已被提及elsewhere,但它没有提供可行的解决方案,所以我仍然希望打开一张票。试图在Windows上安装Python bcrypt的许多问题(x64)

 
c:\Users\me\Desktop\temp\py-bcrypt-0.2>setup.py install build --compiler=min 
gw32 
running install 
running build 
running build_py 
running build_ext 
building 'bcrypt._bcrypt' extension 
C:\MinGW\bin\gcc.exe -mno-cygwin -mdll -O -Wall -IC:\Python27\include -IC:\Python27\PC -c bcrypt/bcrypt_python.c -o build\temp.win32-2.7\Release\bcrypt\bcrypt_python.o 
bcrypt/bcrypt_python.c:29:26: error: expected declaration specifiers or '...' before 'u_int8_t' 
bcrypt/bcrypt_python.c:29:38: error: expected declaration specifiers or '...' before 'u_int16_t' 
bcrypt/bcrypt_python.c:29:49: error: expected declaration specifiers or '...' before 'u_int8_t' 
bcrypt/bcrypt_python.c: In function 'bcrypt_encode_salt': 
bcrypt/bcrypt_python.c:56:2: error: too many arguments to function 'encode_salt' 

bcrypt/bcrypt_python.c:29:6: note: declared here 
error: command 'gcc' failed with exit status 1 

这是摆脱初始“error: Setup script exited with error: Unable to find vcvarsall.bat”后,我留下什么似乎像一个Gordic结。 pipeasy-install不起作用。我也读了一些other文章。

我现在不需要实现bcrypt,所以这不是紧急事件,但显然,实施安全密码保护至关重要。

回答

0

假设你使用mingw64,你应该在_WIN32上的ifdef改变_MSC_VER成bcrypt.c,bcrypt_python.c和pybc_blf.h

(我也回答了其他问题)